Created
March 12, 2016 22:28
-
-
Save Chadtech/90c03e9c2e5fb9b9e3c2 to your computer and use it in GitHub Desktop.
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
| drawLander : Ship -> Element | |
| drawLander reasey = | |
| let | |
| lander = "lander.png" | |
| mainThruster = | |
| if reasey.thrusters.main == 1 then | |
| "blast_main.png" | |
| else | |
| "blast_main_none.png" | |
| in | |
| collage 138 138 [ | |
| move (0, -32) | |
| <| toForm | |
| <| image 12 33 mainThruster | |
| , toForm <| image 138 138 lander | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment