|
1
|
function scr_spritematchscr_spritematch
function scr_spritematch(arg0)
{
sprite_index = arg0.sprite_index;
image_index = arg0.image_index;
x = arg0.x;
y = arg0.y;
image_blend = arg0.image_blend;
image_alpha = arg0.image_alpha;
image_angle = arg0.image_angle;
image_xscale = arg0.image_xscale;
image_yscale = arg0.image_yscale;
} (arg0)
|
|
2
|
{
|
|
3
|
sprite_index = arg0.sprite_index;
|
|
4
|
image_index = arg0.image_index;
|
|
5
|
x = arg0.x;
|
|
6
|
y = arg0.y;
|
|
7
|
image_blend = arg0.image_blend;
|
|
8
|
image_alpha = arg0.image_alpha;
|
|
9
|
image_angle = arg0.image_angle;
|
|
10
|
image_xscale = arg0.image_xscale;
|
|
11
|
image_yscale = arg0.image_yscale;
|
|
12
|
}
|