1
0

Implement SPSCALE ID OUT X,Y

This commit is contained in:
otya128
2017-07-03 19:22:55 +09:00
parent f0d6057f14
commit 5f69126a35
2 changed files with 21 additions and 0 deletions

View File

@@ -1030,6 +1030,15 @@ class Sprite
sprites[i].scaley = y;
}
}
void getspscale(int i, out double x, out double y)
{
i = spid(i);
synchronized (this)
{
x = sprites[i].scalex;
y = sprites[i].scaley;
}
}
void sprot(int i, double rot)
{
i = spid(i);