From 7a13e612b153d1329394bd850694317e1cd93676 Mon Sep 17 00:00:00 2001 From: dusoleil Date: Fri, 19 Aug 2022 17:32:01 -0400 Subject: project settings --- .gitignore | 1 + Main.tscn | 5 +++++ project.godot | 15 +++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 Main.tscn diff --git a/.gitignore b/.gitignore index 98d3466..87471a3 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ export_presets.cfg data_*/ .vscode/ *.exe +*.dll *.pck *.apk *.apk.idsig diff --git a/Main.tscn b/Main.tscn new file mode 100644 index 0000000..29114cb --- /dev/null +++ b/Main.tscn @@ -0,0 +1,5 @@ +[gd_scene format=2] + +[node name="Main" type="Control"] +anchor_right = 1.0 +anchor_bottom = 1.0 diff --git a/project.godot b/project.godot index bb53846..f459ee6 100644 --- a/project.godot +++ b/project.godot @@ -11,8 +11,23 @@ config_version=4 [application] config/name="Planner" +run/main_scene="res://Main.tscn" config/icon="res://icon.png" +[display] + +window/size/width=1080 +window/size/height=1920 +window/size/test_width=306 +window/size/test_height=544 +window/handheld/orientation="portrait" +window/stretch/mode="viewport" +window/stretch/aspect="keep" + +[editor_plugins] + +enabled=PoolStringArray( "res://addons/godot-sqlite/plugin.cfg" ) + [gui] common/drop_mouse_on_gui_input_disabled=true -- cgit v1.2.3