1egoman / pgiso

3d isometric engine, written in python and pygame

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Pygame Isometric Engine#

Requirements

Examples

Check main.py for a working example

#OR#

Try something along these lines:

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()

About

3d isometric engine, written in python and pygame

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


Languages

Language:Python 100.0%Language:Shell 0.0%