Main.lua 418 B

1234567891011121314151617
  1. -- Generated from the basic screen template
  2. screen = Screen()
  3. font = Font("Resources/deutsche.ttf")
  4. image = ScreenImage("Resources/Substance.png")
  5. image.xscale = 0.5
  6. image.yscale = 0.5
  7. image.x = (640-(image.width*0.5))/2
  8. image.y = (380-(image.height*0.5))/2
  9. screen:addChild(image)
  10. label = ScreenLabel(font, "Hello World!", 72, 0)
  11. label.x = (640-label.width)/2
  12. label.y = (750-label.height)/2
  13. screen:addChild(label)