From ab424ff54b2251480bf73fbd52c6764838bb1a8d Mon Sep 17 00:00:00 2001 From: Segey Lapin Date: Tue, 26 Oct 2021 21:57:39 +0300 Subject: [PATCH] Added project config --- project.godot | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 project.godot diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..fd86ead --- /dev/null +++ b/project.godot @@ -0,0 +1,88 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=4 + +_global_script_classes=[ { +"base": "VoxelGeneratorScript", +"class": "TerrainData", +"language": "GDScript", +"path": "res://generator.gd" +} ] +_global_script_class_icons={ +"TerrainData": "" +} + +[application] + +run/main_scene="res://world.tscn" + +[autoload] + +world_nav="res://world_nav.tscn" +Map="res://autoload/map.tscn" +characters="*res://autoload/characters.gd" +controls="*res://autoload/controls.gd" +doors="*res://autoload/doors.gd" +markers="*res://autoload/marker.gd" +inventory="*res://autoload/inventory.gd" +streaming="*res://autoload/streaming.tscn" +freezer="*res://autoload/freezer.gd" +scenario="*res://autoload/scenario.gd" + +[debug] + +settings/stdout/verbose_stdout=true + +[display] + +window/vsync/use_vsync=false + +[input] + +walk_left={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} +walk_right={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} +walk_front={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} +walk_back={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} +activate={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":69,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} +run={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777237,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} +fps_mode={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":86,"physical_scancode":0,"unicode":0,"echo":false,"script":null) + ] +} + +[rendering] + +quality/driver/fallback_to_gles2=true +quality/spatial_partitioning/render_tree_balance=0.22 +batching/options/use_batching=false