Ver código fonte

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

master
Bryan Miller 6 anos atrás
pai
commit
550ccdbb06
2 arquivos alterados com 23 adições e 0 exclusões
  1. +1
    -0
      game/scenes/__init__.py
  2. +22
    -0
      game/scenes/editor.py

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

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

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

@@ -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

Carregando…
Cancelar
Salvar