|
1
|
function scr_image_copyscr_image_copy
function scr_image_copy(arg0, arg1)
{
arg0.sprite_index = arg1.sprite_index;
arg0.image_index = arg1.image_index;
arg0.image_blend = arg1.image_blend;
arg0.image_speed = arg1.image_speed;
arg0.image_alpha = arg1.image_alpha;
arg0.depth = arg1.depth;
arg0.image_xscale = arg1.image_xscale;
arg0.image_yscale = arg1.image_yscale;
arg0.image_angle = arg1.image_angle;
} (arg0, arg1)
|
|
2
|
{
|
|
3
|
arg0.sprite_index = arg1.sprite_index;
|
|
4
|
arg0.image_index = arg1.image_index;
|
|
5
|
arg0.image_blend = arg1.image_blend;
|
|
6
|
arg0.image_speed = arg1.image_speed;
|
|
7
|
arg0.image_alpha = arg1.image_alpha;
|
|
8
|
arg0.depth = arg1.depth;
|
|
9
|
arg0.image_xscale = arg1.image_xscale;
|
|
10
|
arg0.image_yscale = arg1.image_yscale;
|
|
11
|
arg0.image_angle = arg1.image_angle;
|
|
12
|
}
|