Finally ready to merge the two tool codebases
All checks were successful
Build Dusk / build-linux (push) Successful in 54s
Build Dusk / build-psp (push) Successful in 1m3s

This commit is contained in:
2025-11-16 23:52:52 -06:00
parent ae941a0fdb
commit 69b37b30bc
7 changed files with 146 additions and 22 deletions

View File

@@ -46,7 +46,6 @@ class Map:
traceback.print_exc()
def updateEditorConfig(self):
print("Updating editor config...")
try:
mapFileName = self.getMapFilename()
config = {
@@ -136,4 +135,8 @@ class Map:
self.position[0] + x,
self.position[1] + y,
self.position[2] + z
)
)
def draw(self):
for chunk in self.chunks.values():
chunk.draw()