Cleanup, prep for editor
Some checks failed
Build Dusk / build-linux (push) Failing after 40s
Build Dusk / build-psp (push) Failing after 1m7s

This commit is contained in:
2025-11-15 22:21:03 -06:00
parent 7278bd0c6f
commit c53439066e
17 changed files with 132 additions and 131 deletions

View File

@@ -29,7 +29,7 @@ target_sources(${DUSK_TARGET_NAME}
)
# Defs
add_defs(dawndefs.env dawndefs.h)
add_defs(duskdefs.env duskdefs.h)
# Subdirs
add_subdirectory(assert)

View File

@@ -3,3 +3,9 @@
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
CHUNK_WIDTH = 16
CHUNK_HEIGHT = 16
CHUNK_DEPTH = 4
TILE_WIDTH = 16.0
TILE_HEIGHT = 16.0
TILE_DEPTH = 11.36

View File

@@ -7,10 +7,8 @@
#pragma once
#include "dusk.h"
#include "duskdefs.h"
#define CHUNK_WIDTH 16
#define CHUNK_HEIGHT 16
#define CHUNK_DEPTH 4
#define CHUNK_TILE_COUNT (CHUNK_WIDTH * CHUNK_HEIGHT * CHUNK_DEPTH)
#define MAP_CHUNK_WIDTH 3