asset_get_index

Returns the unique index of the game asset with the given name.

Syntax:

asset_get_index(name);


Argument Description
name The name of the game asset to get the index of (a string).


Returns: Real


Description

You can use this function to get the unique identifying index for a game asset from its name. If the asset is not found, the function will return a value of -1, otherwise it will return the unique index id for the asset being checked. This id can then be used in other functions as you would any other index value, like the sprite_index or the path_index, for example. Please note that although this function can be used to reference assets from strings (see example below) you should always make sure that the asset exists before using it otherwise you may get errors that will crash your game.

NOTE: Script names will not resolve as assets on the HTML5 target platform due to obfuscation of the final code, which may cause issues and should be taken into consideration when using the function.


Example:

var obj = asset_get_index("obj_Enemy_" + string(global.Level));
if obj > -1
   {
   instance_create(random(room_width), random(room_height), obj);
   }

The above code will get an object index from a string, and if that index exists, create an instance of the object in the game.


Back: Game Assets
Next: asset_get_type
© Copyright YoYo Games Ltd. 2018 All Rights Reserved