diff options
author | rom <romangraef@gmail.com> | 2021-04-24 15:04:59 +0200 |
---|---|---|
committer | rom <romangraef@gmail.com> | 2021-04-24 15:04:59 +0200 |
commit | c5bf40de9355301384535c438987d0e8930060fb (patch) | |
tree | 06c477f15e3ce06495ae69e3e1f309c0dffc2def | |
download | ldjam48-c5bf40de9355301384535c438987d0e8930060fb.tar.gz ldjam48-c5bf40de9355301384535c438987d0e8930060fb.tar.bz2 ldjam48-c5bf40de9355301384535c438987d0e8930060fb.zip |
dicks
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | .import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 | 3 | ||||
-rw-r--r-- | .import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex | bin | 0 -> 3413 bytes | |||
-rw-r--r-- | default_env.tres | 8 | ||||
-rw-r--r-- | icon.png | bin | 0 -> 3305 bytes | |||
-rw-r--r-- | icon.png.import | 34 | ||||
-rw-r--r-- | project.godot | 43 |
7 files changed, 89 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a75a71b --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +sfx/sound_track_1.wav filter=lfs diff=lfs merge=lfs -text diff --git a/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 b/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 new file mode 100644 index 0000000..7b61c3e --- /dev/null +++ b/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 @@ -0,0 +1,3 @@ +source_md5="47313fa4c47a9963fddd764e1ec6e4a8" +dest_md5="2ded9e7f9060e2b530aab678b135fc5b" + diff --git a/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex b/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex Binary files differnew file mode 100644 index 0000000..3ca6461 --- /dev/null +++ b/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex diff --git a/default_env.tres b/default_env.tres new file mode 100644 index 0000000..4970d45 --- /dev/null +++ b/default_env.tres @@ -0,0 +1,8 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] + +[resource] +background_mode = 1 +background_sky = SubResource( 1 ) +background_color = Color( 0.305882, 0.164706, 0.164706, 1 ) diff --git a/icon.png b/icon.png Binary files differnew file mode 100644 index 0000000..c98fbb6 --- /dev/null +++ b/icon.png diff --git a/icon.png.import b/icon.png.import new file mode 100644 index 0000000..96cbf46 --- /dev/null +++ b/icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.png" +dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..e2b47f4 --- /dev/null +++ b/project.godot @@ -0,0 +1,43 @@ +; 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 + +[application] + +config/name="Deeper and Deeper" +config/icon="res://icon.png" + +[input] + +mv_up={ +"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,"unicode":0,"echo":false,"script":null) + ] +} +mv_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,"unicode":0,"echo":false,"script":null) + ] +} +mv_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,"unicode":0,"echo":false,"script":null) + ] +} + +[physics] + +common/enable_pause_aware_picking=true + +[rendering] + +quality/driver/driver_name="GLES2" +vram_compression/import_etc=true +vram_compression/import_etc2=false +environment/default_environment="res://default_env.tres" |