Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.89 KB | None | 0 0
  1. prof_face = Image.load("res/profa.png")
  2. prof_dos = Image.load("res/profdo.png")
  3. prof_droite = Image.load("res/profd.png")
  4. prof_gauche = Image.load("res/profg.png")
  5. perso = { x = 325, y = 210, img = Image.load("res/perso.png") }
  6. orange = Color.new(255,153,0)
  7. rouge = Color.new(255,0,0)
  8. bleu = Color.new(0,0,255)
  9. vict = Image.load("res/victime.png")
  10. lvl1 = Image.load("res/lvl1.png")
  11. fond = Image.load("res/fond.png")
  12. fondmenu = Image.load("res/menu.png")
  13. credits = Image.load("res/credits.png")
  14. pspgenesiscompetition = Image.load("res/PSPGenesisCompetition.png")
  15. intro = Image.load("res/intro.png")
  16. blanc = Color.new(255,255,255)
  17. noir = Color.new(0,0,0)
  18. police = Font.load("res/police.ttf")
  19. police:setPixelSizes(40,50)
  20. font = Font.load("res/police.ttf")
  21. font:setPixelSizes(100,100)
  22. temps = 0
  23. local h = 0
  24. oldpad = Controls.read()
  25.  
  26. endroit = "intro" -- On vient directement dans le menu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement