twinblade-infinity/scripts/draw_background/draw_background.gml

12 lines
394 B
Plaintext
Executable File

/// @description Draw a background without colour blending or transparency
/// @param back The index of the background to draw.
/// @param x The x coordinate of where to draw the background.
/// @param y The y coordinate of where to draw the background.
/// @returns
function draw_background(argument0, argument1, argument2) {
draw_sprite(argument0, 0, argument1, argument2);
}