diff --git a/CREDITS.md b/CREDITS.md index f84965b..0673bb9 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -5,6 +5,7 @@ - friendlywithmeat [Evgeniy Titarenko] - coding - mrzuerg [Nikolai Gilev] - graphics, level design, story - Polina Gileva - music + - rndtrash - testing ## Used resources @@ -16,4 +17,6 @@ - Godot 4.3 with C# - Jetbrains Rider - - Aseprite \ No newline at end of file + - Aseprite + - Audacity + - Deflemask \ No newline at end of file diff --git a/export_presets.cfg b/export_presets.cfg index c3be4af..ccba38c 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -65,3 +65,46 @@ Remove-Item -Recurse -Force '{temp_dir}'" dotnet/include_scripts_content=false dotnet/include_debug_symbols=false dotnet/embed_build_outputs=false + +[preset.1] + +name="Linux" +platform="Linux" +runnable=true +advanced_options=false +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="Build/Linux/OutOfTheDeep.x86_64" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false +script_export_mode=2 + +[preset.1.options] + +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +binary_format/embed_pck=false +texture_format/s3tc_bptc=true +texture_format/etc2_astc=false +binary_format/architecture="x86_64" +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +export DISPLAY=:0 +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +\"{temp_dir}/{exe_name}\" {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" +dotnet/include_scripts_content=false +dotnet/include_debug_symbols=false +dotnet/embed_build_outputs=false diff --git a/resources/sprites/Sub/Sub.png b/resources/sprites/Sub/Sub.png index aa2e622..cbf96a2 100644 Binary files a/resources/sprites/Sub/Sub.png and b/resources/sprites/Sub/Sub.png differ diff --git a/scenes/Day3.tscn b/scenes/Day3.tscn index cefbd9c..0992019 100644 --- a/scenes/Day3.tscn +++ b/scenes/Day3.tscn @@ -235,7 +235,7 @@ position = Vector2(1597, -12) NPCName = "Computer" Frames = ExtResource("8_k42bg") DefaultDialogLine = "Maintenance required" -DialogLines = ["Target aquired", "Engine working at 100% capacity", "Recommend !@#$%^*", "...", "TEG RESUOLC", "...", "Engine working at 105% capacity", "Maintenance required"] +DialogLines = ["Target aquired", "Engine working at 100% capacity", "Recommend !@#$%^*", "...", "TEG RESOLC", "...", "Engine working at 105% capacity", "Maintenance required"] [node name="Engine" parent="NPCs" instance=ExtResource("3_s2s8w")] position = Vector2(-359, 244) @@ -248,7 +248,7 @@ DialogLines = ["You manually lower engine speed for it to not overheat", "You ar position = Vector2(979, 131) NPCName = "Bridge door" Frames = ExtResource("8_k42bg") -DefaultDialogLine = "Still closed" +DefaultDialogLine = "Still locked" [node name="Deco" type="Node2D" parent="."] diff --git a/scripts/Player.cs b/scripts/Player.cs index 3eaf7c7..3117fe2 100644 --- a/scripts/Player.cs +++ b/scripts/Player.cs @@ -228,6 +228,8 @@ public partial class Player : CharacterBody2D { if (@event.IsActionPressed("Interact")) { + if (CurrentState == State.Transition) return; + if (InteractableObject is NPC npc) {