Отображение в редакторе при изменении экспортированных переменных, музыка на все дни, звуки дверей, NPC.

This commit is contained in:
Евгений Титаренко 2024-08-18 16:22:44 +03:00
parent fec3f22665
commit 3c1619ee9f
47 changed files with 657 additions and 89 deletions

View file

@ -8,7 +8,7 @@
## Used resources
- zx spectrum font - Sizenko Alexander from (Style-7)
- footsteps audio - [Kenney](http://www.kenney.nl/)
- footsteps & doors sounds - [Kenney](http://www.kenney.nl/)
## Tools

View file

@ -1,4 +1,8 @@
[gd_resource type="AudioBusLayout" load_steps=2 format=3 uid="uid://l2ld5cr1ew0r"]
[gd_resource type="AudioBusLayout" load_steps=3 format=3 uid="uid://l2ld5cr1ew0r"]
[sub_resource type="AudioEffectReverb" id="AudioEffectReverb_728t0"]
resource_name = "Reverb"
room_size = 0.2
[sub_resource type="AudioEffectReverb" id="AudioEffectReverb_wcs3s"]
resource_name = "Reverb"
@ -11,6 +15,8 @@ bus/1/mute = false
bus/1/bypass_fx = false
bus/1/volume_db = 0.0
bus/1/send = &"Master"
bus/1/effect/0/effect = SubResource("AudioEffectReverb_728t0")
bus/1/effect/0/enabled = true
bus/2/name = &"Sound"
bus/2/solo = false
bus/2/mute = false

View file

@ -4,6 +4,7 @@
[ext_resource type="SpriteFrames" uid="uid://bvnfvjn7am8tc" path="res://resources/sprites/key.tres" id="2_0s1fq"]
[sub_resource type="CircleShape2D" id="CircleShape2D_w4p6k"]
radius = 20.0
[node name="Interactable" type="Node2D"]
script = ExtResource("1_4ni08")
@ -14,7 +15,6 @@ script = ExtResource("1_4ni08")
shape = SubResource("CircleShape2D_w4p6k")
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
visible = false
scale = Vector2(0.5, 0.5)
sprite_frames = ExtResource("2_0s1fq")
autoplay = "default"

View file

@ -2,16 +2,17 @@
[ext_resource type="Script" path="res://scripts/NPC.cs" id="1_xeo83"]
[ext_resource type="PackedScene" uid="uid://x6pqolxtgwvy" path="res://prefabs/Interactable.tscn" id="2_hcfxj"]
[ext_resource type="SpriteFrames" uid="uid://e8ybb7seykdx" path="res://resources/sprites/player/player.tres" id="2_x8mtv"]
[ext_resource type="SpriteFrames" uid="uid://dj0263g1jrmtl" path="res://resources/sprites/npcs/template.tres" id="2_r10xf"]
[node name="Npc" type="Node2D"]
script = ExtResource("1_xeo83")
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
sprite_frames = ExtResource("2_x8mtv")
sprite_frames = ExtResource("2_r10xf")
frame_progress = 0.606473
[node name="Interactable" parent="." instance=ExtResource("2_hcfxj")]
SpriteOffset = Vector2(0, -25)
SpriteOffset = Vector2(0, -35)
AreaRadius = 20.0
[connection signal="PlayerLeft" from="Interactable" to="." method="_on_interactable_player_left"]

View file

@ -1,13 +1,13 @@
[gd_scene load_steps=12 format=3 uid="uid://dfdsnwub212o6"]
[gd_scene load_steps=13 format=3 uid="uid://dfdsnwub212o6"]
[ext_resource type="Script" path="res://scripts/Player.cs" id="1_68nsf"]
[ext_resource type="SpriteFrames" uid="uid://e8ybb7seykdx" path="res://resources/sprites/player/player.tres" id="1_be2ex"]
[ext_resource type="FontFile" uid="uid://dwn20pw40jpxm" path="res://fonts/ZxSpectrum7-nROZ0.ttf" id="3_w5ojp"]
[ext_resource type="PackedScene" uid="uid://cmn7af4dsj8v2" path="res://prefabs/Dialog.tscn" id="4_owmws"]
[ext_resource type="AudioStream" uid="uid://bcb1ve32foim7" path="res://resources/sounds/footsteps/impactMetal_heavy_002.ogg" id="5_2q34s"]
[ext_resource type="PackedScene" uid="uid://phjermaw6phb" path="res://prefabs/AudioCollection.tscn" id="5_wnylg"]
[ext_resource type="AudioStream" uid="uid://b0sbab3hle70o" path="res://resources/sounds/footsteps/impactMetal_heavy_003.ogg" id="6_4fib2"]
[ext_resource type="AudioStream" uid="uid://ctxrv13vv8xyb" path="res://resources/sounds/footsteps/impactMetal_heavy_004.ogg" id="7_k5uvo"]
[ext_resource type="AudioStream" uid="uid://cb0344er3onkq" path="res://resources/sounds/door/doorOpen_1.ogg" id="7_2fkyu"]
[ext_resource type="AudioStream" uid="uid://87caolv1uksk" path="res://resources/sounds/door/doorClose_3.ogg" id="8_4v0xv"]
[ext_resource type="AudioStream" uid="uid://c0toj2j52ya7t" path="res://resources/sounds/footsteps/impactMetal_004.ogg" id="8_alxid"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_sed4o"]
size = Vector2(22, 51)
@ -18,6 +18,12 @@ default_font_size = 10
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l7l8c"]
[sub_resource type="AudioStreamPlaylist" id="AudioStreamPlaylist_flb1c"]
loop = false
stream_count = 2
stream_0 = ExtResource("7_2fkyu")
stream_1 = ExtResource("8_4v0xv")
[node name="Player" type="CharacterBody2D"]
z_index = 10
script = ExtResource("1_68nsf")
@ -57,19 +63,28 @@ layout_mode = 2
layout_mode = 2
[node name="Footsteps" parent="." instance=ExtResource("5_wnylg")]
Timeout = 0.2
RandomPitch = true
PitchStart = 0.75
PitchEnd = 0.9
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="Footsteps"]
stream = ExtResource("5_2q34s")
stream = ExtResource("8_alxid")
bus = &"Sound"
[node name="AudioStreamPlayer2" type="AudioStreamPlayer" parent="Footsteps"]
stream = ExtResource("6_4fib2")
[node name="DoorSounds" parent="." instance=ExtResource("5_wnylg")]
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="DoorSounds"]
stream = ExtResource("7_2fkyu")
volume_db = -10.0
bus = &"Sound"
[node name="AudioStreamPlayer3" type="AudioStreamPlayer" parent="Footsteps"]
stream = ExtResource("7_k5uvo")
[node name="AudioStreamPlayer2" type="AudioStreamPlayer" parent="DoorSounds"]
stream = ExtResource("8_4v0xv")
volume_db = -10.0
bus = &"Sound"
[node name="AudioStreamPlayer2" type="AudioStreamPlayer" parent="."]
stream = SubResource("AudioStreamPlaylist_flb1c")
bus = &"Sound"
[connection signal="Finished" from="DoorSounds" to="." method="_on_door_opened"]

BIN
resources/music/Day2.wav Normal file

Binary file not shown.

View file

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://bask8dw8kd56j"
path="res://.godot/imported/Day2.wav-ecee82b45331b5962cc6ab46f191b11a.sample"
[deps]
source_file="res://resources/music/Day2.wav"
dest_files=["res://.godot/imported/Day2.wav-ecee82b45331b5962cc6ab46f191b11a.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
resources/music/Day3.wav Normal file

Binary file not shown.

View file

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://c0mheqx5d738m"
path="res://.godot/imported/Day3.wav-0f349c731f6aabd078d53cbda1b70bfb.sample"
[deps]
source_file="res://resources/music/Day3.wav"
dest_files=["res://.godot/imported/Day3.wav-0f349c731f6aabd078d53cbda1b70bfb.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
resources/music/Day4.wav Normal file

Binary file not shown.

View file

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://dyj3161xr78j8"
path="res://.godot/imported/Day4.wav-cd7252b7132e7f90b4c7a90c51189472.sample"
[deps]
source_file="res://resources/music/Day4.wav"
dest_files=["res://.godot/imported/Day4.wav-cd7252b7132e7f90b4c7a90c51189472.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
resources/music/Day5.wav Normal file

Binary file not shown.

View file

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://3poadcg4f8mj"
path="res://.godot/imported/Day5.wav-b993ca76f82d991784f52b30ee8e981f.sample"
[deps]
source_file="res://resources/music/Day5.wav"
dest_files=["res://.godot/imported/Day5.wav-b993ca76f82d991784f52b30ee8e981f.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://87caolv1uksk"
path="res://.godot/imported/doorClose_3.ogg-5c61520423be15fb57d7aab1e4a67efe.oggvorbisstr"
[deps]
source_file="res://resources/sounds/door/doorClose_3.ogg"
dest_files=["res://.godot/imported/doorClose_3.ogg-5c61520423be15fb57d7aab1e4a67efe.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://cb0344er3onkq"
path="res://.godot/imported/doorOpen_1.ogg-cc21dd25a103cf696a919bf6d563b950.oggvorbisstr"
[deps]
source_file="res://resources/sounds/door/doorOpen_1.ogg"
dest_files=["res://.godot/imported/doorOpen_1.ogg-cc21dd25a103cf696a919bf6d563b950.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://c0toj2j52ya7t"
path="res://.godot/imported/impactMetal_004.ogg-e82c9e8eae28085d6dd95f80251df3de.oggvorbisstr"
[deps]
source_file="res://resources/sounds/footsteps/impactMetal_004.ogg"
dest_files=["res://.godot/imported/impactMetal_004.ogg-e82c9e8eae28085d6dd95f80251df3de.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

View file

@ -1,19 +0,0 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bcb1ve32foim7"
path="res://.godot/imported/impactMetal_heavy_002.ogg-2ce07dc21827373020adf5ad17e8e0cb.oggvorbisstr"
[deps]
source_file="res://resources/sounds/footsteps/impactMetal_heavy_002.ogg"
dest_files=["res://.godot/imported/impactMetal_heavy_002.ogg-2ce07dc21827373020adf5ad17e8e0cb.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

View file

@ -1,19 +0,0 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://b0sbab3hle70o"
path="res://.godot/imported/impactMetal_heavy_003.ogg-dc105179ec501c9d214a07d441289f39.oggvorbisstr"
[deps]
source_file="res://resources/sounds/footsteps/impactMetal_heavy_003.ogg"
dest_files=["res://.godot/imported/impactMetal_heavy_003.ogg-dc105179ec501c9d214a07d441289f39.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

View file

@ -1,19 +0,0 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://ctxrv13vv8xyb"
path="res://.godot/imported/impactMetal_heavy_004.ogg-2434a77aab1cc90794b9891fc12840b4.oggvorbisstr"
[deps]
source_file="res://resources/sounds/footsteps/impactMetal_heavy_004.ogg"
dest_files=["res://.godot/imported/impactMetal_heavy_004.ogg-2434a77aab1cc90794b9891fc12840b4.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c2l2x12w8fsdu"
path="res://.godot/imported/captain.png-3f5232680edea376c37909193b0c7005.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://resources/sprites/npcs/captain.png"
dest_files=["res://.godot/imported/captain.png-3f5232680edea376c37909193b0c7005.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View file

@ -0,0 +1,79 @@
[gd_resource type="SpriteFrames" load_steps=11 format=3 uid="uid://bwssm27bm14s7"]
[ext_resource type="Texture2D" uid="uid://c2l2x12w8fsdu" path="res://resources/sprites/npcs/captain.png" id="1_dt7xe"]
[sub_resource type="AtlasTexture" id="AtlasTexture_0smo8"]
atlas = ExtResource("1_dt7xe")
region = Rect2(0, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_23gxd"]
atlas = ExtResource("1_dt7xe")
region = Rect2(64, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_itlv8"]
atlas = ExtResource("1_dt7xe")
region = Rect2(128, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_tp0fr"]
atlas = ExtResource("1_dt7xe")
region = Rect2(192, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_8u8o5"]
atlas = ExtResource("1_dt7xe")
region = Rect2(256, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_c236t"]
atlas = ExtResource("1_dt7xe")
region = Rect2(320, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_4lix5"]
atlas = ExtResource("1_dt7xe")
region = Rect2(384, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_rkj7s"]
atlas = ExtResource("1_dt7xe")
region = Rect2(448, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_080lj"]
atlas = ExtResource("1_dt7xe")
region = Rect2(512, 0, 64, 64)
[resource]
animations = [{
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_0smo8")
}],
"loop": true,
"name": &"default",
"speed": 5.0
}, {
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_23gxd")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_itlv8")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_tp0fr")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_8u8o5")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_c236t")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_4lix5")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_rkj7s")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_080lj")
}],
"loop": true,
"name": &"walk",
"speed": 5.0
}]

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b712gfr1uu5vg"
path="res://.godot/imported/cock.png-ec8157d7394446c5ed6bb1bb943bac2a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://resources/sprites/npcs/cock.png"
dest_files=["res://.godot/imported/cock.png-ec8157d7394446c5ed6bb1bb943bac2a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View file

@ -0,0 +1,18 @@
[gd_resource type="SpriteFrames" load_steps=3 format=3 uid="uid://dsgqo48qikwsn"]
[ext_resource type="Texture2D" uid="uid://b712gfr1uu5vg" path="res://resources/sprites/npcs/cock.png" id="1_nbo6y"]
[sub_resource type="AtlasTexture" id="AtlasTexture_kk4xr"]
atlas = ExtResource("1_nbo6y")
region = Rect2(0, 0, 64, 64)
[resource]
animations = [{
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_kk4xr")
}],
"loop": true,
"name": &"default",
"speed": 5.0
}]

Binary file not shown.

After

Width:  |  Height:  |  Size: 923 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cm8gq2rjyfqfp"
path="res://.godot/imported/crewmate.png-26640ef1520ea0198925bedc044f8b3b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://resources/sprites/npcs/crewmate.png"
dest_files=["res://.godot/imported/crewmate.png-26640ef1520ea0198925bedc044f8b3b.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View file

@ -0,0 +1,18 @@
[gd_resource type="SpriteFrames" load_steps=3 format=3 uid="uid://532buo56y4q2"]
[ext_resource type="Texture2D" uid="uid://cm8gq2rjyfqfp" path="res://resources/sprites/npcs/crewmate.png" id="1_6hugm"]
[sub_resource type="AtlasTexture" id="AtlasTexture_vcttb"]
atlas = ExtResource("1_6hugm")
region = Rect2(0, 0, 64, 64)
[resource]
animations = [{
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_vcttb")
}],
"loop": true,
"name": &"default",
"speed": 5.0
}]

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b3w4qjtacp2y"
path="res://.godot/imported/doctor.png-f145266b4bea6934adb33cfc99fc7448.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://resources/sprites/npcs/doctor.png"
dest_files=["res://.godot/imported/doctor.png-f145266b4bea6934adb33cfc99fc7448.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View file

@ -0,0 +1,18 @@
[gd_resource type="SpriteFrames" load_steps=3 format=3 uid="uid://1r4r5gmf5kdo"]
[ext_resource type="Texture2D" uid="uid://b3w4qjtacp2y" path="res://resources/sprites/npcs/doctor.png" id="1_3wwap"]
[sub_resource type="AtlasTexture" id="AtlasTexture_tw47n"]
atlas = ExtResource("1_3wwap")
region = Rect2(0, 0, 64, 64)
[resource]
animations = [{
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_tw47n")
}],
"loop": true,
"name": &"default",
"speed": 5.0
}]

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bxpgwxku4ghha"
path="res://.godot/imported/template.png-0aa9c8e030f4add49757e31931452300.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://resources/sprites/npcs/template.png"
dest_files=["res://.godot/imported/template.png-0aa9c8e030f4add49757e31931452300.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View file

@ -0,0 +1,79 @@
[gd_resource type="SpriteFrames" load_steps=11 format=3 uid="uid://dj0263g1jrmtl"]
[ext_resource type="Texture2D" uid="uid://bxpgwxku4ghha" path="res://resources/sprites/npcs/template.png" id="1_tu1rf"]
[sub_resource type="AtlasTexture" id="AtlasTexture_2epp0"]
atlas = ExtResource("1_tu1rf")
region = Rect2(0, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_sn7ek"]
atlas = ExtResource("1_tu1rf")
region = Rect2(64, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_p0v52"]
atlas = ExtResource("1_tu1rf")
region = Rect2(128, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_aov5y"]
atlas = ExtResource("1_tu1rf")
region = Rect2(192, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_y5gc8"]
atlas = ExtResource("1_tu1rf")
region = Rect2(256, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_bcpwq"]
atlas = ExtResource("1_tu1rf")
region = Rect2(320, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_xjvk5"]
atlas = ExtResource("1_tu1rf")
region = Rect2(384, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_ysyum"]
atlas = ExtResource("1_tu1rf")
region = Rect2(448, 0, 64, 64)
[sub_resource type="AtlasTexture" id="AtlasTexture_hkbob"]
atlas = ExtResource("1_tu1rf")
region = Rect2(512, 0, 64, 64)
[resource]
animations = [{
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_2epp0")
}],
"loop": true,
"name": &"default",
"speed": 5.0
}, {
"frames": [{
"duration": 1.0,
"texture": SubResource("AtlasTexture_sn7ek")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_p0v52")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_aov5y")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_y5gc8")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_bcpwq")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_xjvk5")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_ysyum")
}, {
"duration": 1.0,
"texture": SubResource("AtlasTexture_hkbob")
}],
"loop": true,
"name": &"walk",
"speed": 14.0
}]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -1,11 +1,14 @@
[gd_scene load_steps=18 format=3 uid="uid://dwii5fob7qy7c"]
[gd_scene load_steps=21 format=3 uid="uid://dwii5fob7qy7c"]
[ext_resource type="Texture2D" uid="uid://b5baxx5o21qy1" path="res://resources/sprites/Sub/Sub.png" id="1_81pua"]
[ext_resource type="PackedScene" uid="uid://dfdsnwub212o6" path="res://prefabs/Player.tscn" id="2_mmd6a"]
[ext_resource type="SpriteFrames" uid="uid://e8ybb7seykdx" path="res://resources/sprites/player/player.tres" id="3_cqsbi"]
[ext_resource type="PackedScene" uid="uid://c5ndo6b0unkst" path="res://prefabs/NPC.tscn" id="3_cu4p0"]
[ext_resource type="SpriteFrames" uid="uid://dsgqo48qikwsn" path="res://resources/sprites/npcs/cock.tres" id="4_7refo"]
[ext_resource type="PackedScene" uid="uid://coogmsw6rsdun" path="res://prefabs/Door.tscn" id="4_22581"]
[ext_resource type="SpriteFrames" uid="uid://bwssm27bm14s7" path="res://resources/sprites/npcs/captain.tres" id="5_8eaj1"]
[ext_resource type="SpriteFrames" uid="uid://1r4r5gmf5kdo" path="res://resources/sprites/npcs/doctor.tres" id="6_hfiji"]
[ext_resource type="AudioStream" uid="uid://be35iuapayv0u" path="res://resources/music/Day1.wav" id="6_jvwn3"]
[ext_resource type="SpriteFrames" uid="uid://532buo56y4q2" path="res://resources/sprites/npcs/crewmate.tres" id="7_3qwvo"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_h0540"]
size = Vector2(640, 24)
@ -153,13 +156,28 @@ Exit = NodePath("../Door_QUOTERS")
[node name="NPCs" type="Node2D" parent="."]
[node name="Npc" parent="NPCs" instance=ExtResource("3_cu4p0")]
position = Vector2(752, 16)
NPCName = "Test"
Frames = ExtResource("3_cqsbi")
[node name="Test" parent="NPCs" instance=ExtResource("3_cu4p0")]
position = Vector2(652, 14)
NPCName = "Cock"
Frames = ExtResource("4_7refo")
[node name="Captain" parent="NPCs" instance=ExtResource("3_cu4p0")]
position = Vector2(1116, -257)
NPCName = "Captain"
Frames = ExtResource("5_8eaj1")
[node name="Doctor" parent="NPCs" instance=ExtResource("3_cu4p0")]
position = Vector2(318, 255)
NPCName = "Doctor"
Frames = ExtResource("6_hfiji")
[node name="Crewmate" parent="NPCs" instance=ExtResource("3_cu4p0")]
position = Vector2(1307, 254)
NPCName = "Crewmate"
Frames = ExtResource("7_3qwvo")
[node name="Player" parent="." instance=ExtResource("2_mmd6a")]
position = Vector2(263, 14)
position = Vector2(1054, 255)
Speed = 100.0
[node name="Music" type="AudioStreamPlayer" parent="."]

View file

@ -4,6 +4,8 @@ using Godot;
public partial class AudioCollection : Node
{
[Signal] public delegate void FinishedEventHandler();
private enum State
{
Error,
@ -46,6 +48,7 @@ public partial class AudioCollection : Node
if (!_currentPlayer.IsPlaying())
{
_state = State.Timeout;
EmitSignal(SignalName.Finished);
}
break;
@ -72,7 +75,7 @@ public partial class AudioCollection : Node
player.PitchScale = RandomPitch ? _rng.RandfRange(PitchStart, PitchEnd) : 1;
player.Play();
_state = State.Playing;
_currentChild = Shuffle ? _rng.RandiRange(0, _count) : 0;
_currentChild = Shuffle ? _rng.RandiRange(0, _count) : (_currentChild + 1) % _count;
_currentPlayer = player;
break;
}

View file

@ -4,9 +4,12 @@ using System;
public partial class Door : Node2D
{
[Export] public Door Exit;
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
}
// Called every frame. 'delta' is the elapsed time since the previous frame.

View file

@ -1,8 +1,11 @@
using Godot;
using System;
[Tool]
public partial class Interactable : Node2D
{
private const double Tolerance = 1e-6;
[Signal]
public delegate void PlayerNearByEventHandler(Player player);
[Signal]
@ -15,18 +18,34 @@ public partial class Interactable : Node2D
private CollisionShape2D _areaMesh;
private CircleShape2D _collisionCircle;
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
_sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D");
_areaMesh = (CollisionShape2D)FindChild("CollisionShape2D");
_sprite.Position += SpriteOffset;
((CircleShape2D)_areaMesh.Shape).Radius = AreaRadius;
_sprite.Position = SpriteOffset;
_collisionCircle =(CircleShape2D)_areaMesh.Shape;
_collisionCircle.Radius = AreaRadius;
if (Engine.IsEditorHint())
{
_sprite.Visible = true;
}
else
{
_sprite.Visible = false;
}
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
if (Engine.IsEditorHint())
{
if (_sprite.Position != SpriteOffset) _sprite.Position = SpriteOffset;
if (Math.Abs(_collisionCircle.Radius - AreaRadius) > Tolerance) _collisionCircle.Radius = AreaRadius;
}
}
private void _on_area_2d_body_entered(Node2D body)

View file

@ -2,7 +2,7 @@ using Godot;
using System;
using Godot.Collections;
[Tool]
public partial class NPC : Node2D
{
[Export] public string NPCName;
@ -14,7 +14,7 @@ public partial class NPC : Node2D
public override void _Ready()
{
_sprite = (AnimatedSprite2D)FindChild("AnimatedSprite2D");
_sprite.SpriteFrames = Frames;
if (Frames is not null) _sprite.SpriteFrames = Frames;
_sprite.Play("default");
}
@ -22,6 +22,14 @@ public partial class NPC : Node2D
{
}
public override void _PhysicsProcess(double delta)
{
if (Engine.IsEditorHint())
{
if (Frames is not null && _sprite.SpriteFrames != Frames) _sprite.SpriteFrames = Frames;
}
}
public void test()
{
if (_sprite.Animation == "walk")

View file

@ -9,6 +9,7 @@ public partial class Player : CharacterBody2D
public enum State
{
Normal,
Wait,
Transition,
ReadChat
}
@ -20,10 +21,10 @@ public partial class Player : CharacterBody2D
get => _state;
private set
{
_state = value;
switch (_state)
switch (value)
{
case State.Normal:
if (_state == State.Transition) DoorSounds.Play();
Visible = true;
break;
case State.Transition:
@ -32,9 +33,12 @@ public partial class Player : CharacterBody2D
case State.ReadChat:
// ChatLog.Visible = !ChatLog.Visible;
break;
case State.Wait:
break;
default:
throw new ArgumentOutOfRangeException();
}
_state = value;
}
}
@ -70,7 +74,8 @@ public partial class Player : CharacterBody2D
protected PanelContainer ChatLog;
protected Camera2D Camera;
protected AudioCollection Footsteps;
protected AudioCollection DoorSounds;
private Vector2 _newPosition;
private double _currentTransitionTime = 0;
private double _currentCameraTransitionTime = 0;
@ -84,6 +89,7 @@ public partial class Player : CharacterBody2D
ChatLog = (PanelContainer)FindChild("ChatLog");
Camera = (Camera2D)FindChild("Camera2D");
Footsteps = (AudioCollection)FindChild("Footsteps");
DoorSounds = (AudioCollection)FindChild("DoorSounds");
}
public override void _PhysicsProcess(double delta)
@ -172,6 +178,8 @@ public partial class Player : CharacterBody2D
}
}
break;
case State.Wait:
break;
default:
throw new ArgumentOutOfRangeException();
}
@ -189,9 +197,10 @@ public partial class Player : CharacterBody2D
if (InteractableObject is Door door)
{
DoorSounds.Play();
_previousPosition = GlobalPosition;
_nextPosition = door.Exit.GlobalPosition;
CurrentState = State.Transition;
CurrentState = State.Wait;
}
}
@ -208,4 +217,12 @@ public partial class Player : CharacterBody2D
}
}
}
private void _on_door_opened()
{
if (CurrentState == State.Wait)
{
CurrentState = State.Transition;
}
}
}