From 95a5eae1f6c4d2106c43c824122fe96e090f2dd4 Mon Sep 17 00:00:00 2001 From: Zoe Date: Sun, 8 May 2022 21:03:57 +0200 Subject: [PATCH] placing brown bricks in codename routes is the most fun you can have while playing an app --- godot/project.godot | 5 +++++ godot/world/StateApi.gd | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/godot/project.godot b/godot/project.godot index 957d385..693d058 100644 --- a/godot/project.godot +++ b/godot/project.godot @@ -18,6 +18,11 @@ config/icon="res://icon.png" StateServer="*res://native/StateServer.tscn" +[display] + +window/size/width=1920 +window/size/height=1080 + [importer_defaults] texture={ diff --git a/godot/world/StateApi.gd b/godot/world/StateApi.gd index 325f42c..cd9231f 100644 --- a/godot/world/StateApi.gd +++ b/godot/world/StateApi.gd @@ -1,8 +1,8 @@ extends Node -export var xsize = 256 -export var ysize = 256 -export var zsize = 16 +export var xsize = 64 +export var ysize = 64 +export var zsize = 8 func _ready(): StateServer.generate_world(xsize, ysize, zsize)