diff options
Diffstat (limited to 'global.gd')
-rw-r--r-- | global.gd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/global.gd b/global.gd new file mode 100644 index 0000000..96d41c0 --- /dev/null +++ b/global.gd @@ -0,0 +1,10 @@ +extends Node + + +var player: Player +var mutex := Mutex.new() + +var chunks: Dictionary[Vector3i, Chunk] = {} +var CHUNK_SIZE := Vector3i(16, 16, 16) +var GROUND_LEVEL := 0 +var MAX_HEIGHT := 15 |