Финальные штрихи 2

This commit is contained in:
Евгений Титаренко 2024-08-25 21:31:26 +03:00
parent c7f2417bb9
commit dfd63f0f9c
5 changed files with 51 additions and 3 deletions

View file

@ -5,6 +5,7 @@
- friendlywithmeat [Evgeniy Titarenko] - coding
- mrzuerg [Nikolai Gilev] - graphics, level design, story
- Polina Gileva - music
- rndtrash - testing
## Used resources
@ -17,3 +18,5 @@
- Godot 4.3 with C#
- Jetbrains Rider
- Aseprite
- Audacity
- Deflemask

View file

@ -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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

After

Width:  |  Height:  |  Size: 150 KiB

View file

@ -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="."]

View file

@ -228,6 +228,8 @@ public partial class Player : CharacterBody2D
{
if (@event.IsActionPressed("Interact"))
{
if (CurrentState == State.Transition) return;
if (InteractableObject is NPC npc)
{