瀏覽代碼

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

master
Bryan Miller 6 年之前
父節點
當前提交
550ccdbb06
共有 2 個文件被更改,包括 23 次插入0 次删除
  1. +1
    -0
      game/scenes/__init__.py
  2. +22
    -0
      game/scenes/editor.py

+ 1
- 0
game/scenes/__init__.py 查看文件

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

+ 22
- 0
game/scenes/editor.py 查看文件

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

Loading…
取消
儲存