diff options
| author | realtradam <[email protected]> | 2021-01-20 11:15:52 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2021-01-20 11:15:52 -0500 |
| commit | 75fdf10532f21aa5b39f940a19f6b4a2deb0911f (patch) | |
| tree | 9189d7be49b86206b8592a90a30c07aa26cff921 | |
| parent | b1e1d370368961af6e8168bd6f0f3ff16b142a59 (diff) | |
| download | E-C-Kai-75fdf10532f21aa5b39f940a19f6b4a2deb0911f.tar.gz E-C-Kai-75fdf10532f21aa5b39f940a19f6b4a2deb0911f.zip | |
init
| -rw-r--r-- | .gitignore | 5 | ||||
| -rw-r--r-- | Assets/icon.png | bin | 0 -> 3305 bytes | |||
| -rw-r--r-- | Level.tscn | 3 | ||||
| -rw-r--r-- | default_env.tres | 7 | ||||
| -rw-r--r-- | project.godot | 26 |
5 files changed, 38 insertions, 3 deletions
@@ -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 Binary files differnew file mode 100644 index 0000000..c98fbb6 --- /dev/null +++ b/Assets/icon.png 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" |
