texture_get_width


描述

Returns the width of the texture with the given id, which is always a value within the range 0 - 1. This can then be used when mapping textures to models or primitives.


语法:

texture_get_width(tex);

参数 描述
tex The texture page asset pointer to use


返回:

Real(实数)


例如:

tex_w = texture_get_width(sprite_get_texture(spr_Model_tex, 0));

The above code will get the width of the texture taken from a sprite asset.