Explorar el Código

Modules in the game/scenes directory will be for organizing complex node scenes

master
Bryan Miller hace 6 años
padre
commit
550ccdbb06
Se han modificado 2 ficheros con 23 adiciones y 0 borrados
  1. +1
    -0
      game/scenes/__init__.py
  2. +22
    -0
      game/scenes/editor.py

+ 1
- 0
game/scenes/__init__.py Ver fichero

@@ -0,0 +1 @@
from . import editor

+ 22
- 0
game/scenes/editor.py Ver fichero

@@ -0,0 +1,22 @@

from .. import gbe
from ..nodes import *

_TREE = None
def get():
global _TREE
if _TREE is None:
root = gbe.nodes.NodeSurface("Editor")
root.scale_to_display = True
root.keep_aspect_ratio = True
root.align_center = True
root.set_surface((64, 64))

gamemap = NodeGameMap("GameMap", root)
gamemap.set_resources("", "walls.json")
gamemap.add_layer("main", 10, 10)

editor = NodeMapEditor("Editor", gamemap)

_TREE = root
return _TREE

Cargando…
Cancelar
Guardar