Skip to content

Instantly share code, notes, and snippets.

@codepaladin
Created June 6, 2014 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codepaladin/7d7afd56df17468abd24 to your computer and use it in GitHub Desktop.
Save codepaladin/7d7afd56df17468abd24 to your computer and use it in GitHub Desktop.
-- add a group to contain the character and healthbar
characterGroup = display.newGroup( )
characterGroup.x = display.contentCenterX
characterGroup.y = display.contentCenterY
-- set maxHealth and currentHealth values
maxHealth = 100
currentHealth = 100
-- draw a character to the screen
dwarf = display.newImage("dwarf.png" )
characterGroup:insert( dwarf )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment