draw_sprite_tiled

Draws a sprite at a given position, and tiles it to fill the entire view.

语法:

draw_sprite_tiled(sprite, subimg, x, y);


参数 描述
sprite The index of the sprite to draw.
subimg The subimg (frame) of the sprite to draw (image_index or -1 correlate to the current frame of animation in the object).
x The x coordinate of where to draw the sprite.
y The y coordinate of where to draw the sprite.


返回: N/A(无返回值)


描述

This function will take a sprite and then repeatedly tile it across the whole view (or room if no view is defined), starting from the coordinates that you give in the function. Tiling is based on the width and height of the sprite as defined by the sprite variables of the instance running the code.


例如:

draw_sprite_tiled(sprite_index, image_index, x, y);

This will draw the instances assigned sprite (sprite_index) and its current frame of animation (image_index) at the instances own x and y position, and tiled horizontally and vertically across the view.


上一页: Drawing Sprites And Tiles
下一页: draw_sprite_tiled_ext
© Copyright YoYo Games Ltd. 2018 All Rights Reserved