From 75fdf10532f21aa5b39f940a19f6b4a2deb0911f Mon Sep 17 00:00:00 2001 From: realtradam Date: Wed, 20 Jan 2021 11:15:52 -0500 Subject: init --- .gitignore | 5 ++--- Assets/icon.png | Bin 0 -> 3305 bytes Level.tscn | 3 +++ default_env.tres | 7 +++++++ project.godot | 26 ++++++++++++++++++++++++++ 5 files changed, 38 insertions(+), 3 deletions(-) create mode 100644 Assets/icon.png create mode 100644 Level.tscn create mode 100644 default_env.tres create mode 100644 project.godot diff --git a/.gitignore b/.gitignore index 822b784..f9cba0a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,7 @@ # ---> Godot # Godot-specific ignores -.import/ -export.cfg -export_presets.cfg +*.import +*/.import # Imported translations (automatically generated from CSV files) *.translation diff --git a/Assets/icon.png b/Assets/icon.png new file mode 100644 index 0000000..c98fbb6 Binary files /dev/null and b/Assets/icon.png differ diff --git a/Level.tscn b/Level.tscn new file mode 100644 index 0000000..b93703f --- /dev/null +++ b/Level.tscn @@ -0,0 +1,3 @@ +[gd_scene format=2] + +[node name="Level" type="Node2D"] diff --git a/default_env.tres b/default_env.tres new file mode 100644 index 0000000..20207a4 --- /dev/null +++ b/default_env.tres @@ -0,0 +1,7 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] + +[resource] +background_mode = 2 +background_sky = SubResource( 1 ) diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..1a25130 --- /dev/null +++ b/project.godot @@ -0,0 +1,26 @@ +; 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=[ ] +_global_script_class_icons={ + +} + +[application] + +config/name="E-C-Kai" +config/icon="res://Assets/icon.png" + +[rendering] + +quality/driver/driver_name="GLES2" +vram_compression/import_etc=true +vram_compression/import_etc2=false +environment/default_environment="res://default_env.tres" -- cgit v1.2.3