CommitLog |

This commit is contained in:
SilicaAndPina 2020-07-25 18:20:00 +12:00
parent bc21fc5141
commit e064f6d571
7 changed files with 123 additions and 8 deletions

View file

@ -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 &gt; 0)
<string>/// Slow down if too fast
if(speed &gt; 0)
{
speed -= 1
}