Last active
January 7, 2016 05:16
-
-
Save grimmdev/2bffa7a878f42699d0e7 to your computer and use it in GitHub Desktop.
miniscript example 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// My Example | |
print("Let's fly!") | |
ship.reset | |
ship.x = 0 | |
ship.y = 0 | |
for a in range(0, 90, 1) | |
ship.rot = a | |
wait(1/180) | |
end for | |
for a in range(0,90,1) | |
ship.y = ship.y + 0.025 | |
wait(1/360) | |
end for | |
print("SWOOSH!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment