Skip to content

Instantly share code, notes, and snippets.

@Chadtech
Created March 12, 2016 22:28
Show Gist options
  • Select an option

  • Save Chadtech/90c03e9c2e5fb9b9e3c2 to your computer and use it in GitHub Desktop.

Select an option

Save Chadtech/90c03e9c2e5fb9b9e3c2 to your computer and use it in GitHub Desktop.
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