Pixel-Composer/scripts/draw_background_stretched/draw_background_stretched.gml
2023-02-14 08:48:33 +07:00

10 lines
583 B
Plaintext

/// @description Draws a background at a given position, stretched.
/// @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.
/// @param w The width of the area the stretched background will occupy.
/// @param h The height of the area the stretched background will occupy.
/// @returns
function draw_background_stretched(argument0, argument1, argument2, argument3, argument4) {
draw_sprite_stretched(argument0, 0, argument1, argument2, argument3, argument4);
}