CommitLog |
This commit is contained in:
parent
bc21fc5141
commit
e064f6d571
7 changed files with 123 additions and 8 deletions
|
@ -25,12 +25,13 @@
|
|||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string>image_speed = 0;
|
||||
<string>/// Init
|
||||
image_speed = 0;
|
||||
image_index = random_range(0,2);
|
||||
angle = random_range(0,180);
|
||||
direction = angle;
|
||||
image_angle = angle;
|
||||
//speed = 1;
|
||||
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
|
@ -53,7 +54,8 @@ image_angle = angle;
|
|||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string>if(speed > 0)
|
||||
<string>/// Slow down if too fast
|
||||
if(speed > 0)
|
||||
{
|
||||
speed -= 1
|
||||
}
|
||||
|
|
Reference in a new issue