mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
10 lines
583 B
Plaintext
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);
|
|
} |