Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/1egoman/pgiso

3d isometric engine, written in python and pygame
https://github.com/1egoman/pgiso

Last synced: about 1 month ago
JSON representation

3d isometric engine, written in python and pygame

Awesome Lists containing this project

README

        

#Pygame Isometric Engine#

**Requirements**
- Python (I use 2.7, anything above should work)
- Pygame (http://pygame.org)
- GameObjects (It should be included, but otherwise https://code.google.com/p/gameobjects/)

**Examples**

Check main.py for a working example

#*OR*#

Try something along these lines:
```python
import pygame, world

# init
pygame.init()
s = pygame.display.set_mode((500, 500))
w = world.map(s, 3, 3)

while True:
# make sure it doesn't crash
for event in pygame.event.get():
if event.type == pygame.QUIT: break

# render world
w.render()

pygame.display.flip()
```