Advertisement
ClassicalDig

Variables

Jun 21st, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1. import tkinter as tk
  2.  
  3. root = tk.Tk()
  4.  
  5. ScreenWidth = root.winfo_screenwidth()
  6. ScreenHeight = root.winfo_screenheight()
  7. ScreenTitle = 'Behemoth Brawl'
  8.  
  9. CharacterScaling = 1
  10. TileScaling = 0.5
  11. SpritePixelSize = 128
  12. GridPixelSize = (SpritePixelSize * TileScaling)
  13.  
  14. MovementSpeed = 3
  15. Gravity = 1
  16. JumpSpeed = 14
  17.  
  18. LeftViewpointMargin = 200
  19. RightViewpointMargin = 200
  20. BottomViewpointMargin = 150
  21. TopViewpointMargin = 100
  22.  
  23. PlayerStartX = 512
  24. PlayerStartY = 400
  25.  
  26. TextureRight = 1
  27. TextureLeft = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement