Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import tkinter as tk
- root = tk.Tk()
- ScreenWidth = root.winfo_screenwidth()
- ScreenHeight = root.winfo_screenheight()
- ScreenTitle = 'Behemoth Brawl'
- CharacterScaling = 1
- TileScaling = 0.5
- SpritePixelSize = 128
- GridPixelSize = (SpritePixelSize * TileScaling)
- MovementSpeed = 3
- Gravity = 1
- JumpSpeed = 14
- LeftViewpointMargin = 200
- RightViewpointMargin = 200
- BottomViewpointMargin = 150
- TopViewpointMargin = 100
- PlayerStartX = 512
- PlayerStartY = 400
- TextureRight = 1
- TextureLeft = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement