Improved Watcher, added a defeat sound
This commit is contained in:
parent
d1536529e4
commit
207c90a68b
5 changed files with 38 additions and 5 deletions
|
@ -9,6 +9,7 @@
|
|||
## Used resources
|
||||
|
||||
- crank sound - https://freesound.org/people/tosha73/sounds/546859/
|
||||
- watcher sigh - https://freesound.org/people/AbrahamMast/sounds/501339/
|
||||
|
||||
## Tools
|
||||
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://ccg3n7sobsvdw"]
|
||||
[gd_scene load_steps=8 format=3 uid="uid://ccg3n7sobsvdw"]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/enemies/Watcher.cs" id="1_wfhbm"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://dlf2p3eragspn" path="res://sprites/enemies/watcher.tres" id="2_757xa"]
|
||||
[ext_resource type="Texture2D" uid="uid://dlbl6d4yghvht" path="res://sprites/mask.png" id="3_nbgee"]
|
||||
[ext_resource type="PackedScene" uid="uid://cf0wpahgwygxx" path="res://prefabs/light_sense.tscn" id="4_22lca"]
|
||||
[ext_resource type="AudioStream" uid="uid://dsq2yxiprufht" path="res://sounds/enemies/watcher_sigh.ogg" id="5_6i5wl"]
|
||||
|
||||
[sub_resource type="CircleShape2D" id="CircleShape2D_pcaas"]
|
||||
radius = 100.0
|
||||
|
@ -51,8 +52,12 @@ monitorable = false
|
|||
[node name="CollisionShape2D" type="CollisionShape2D" parent="PlayerCollision"]
|
||||
shape = SubResource("RectangleShape2D_n43vg")
|
||||
|
||||
[node name="SighPlayer2D" type="AudioStreamPlayer2D" parent="."]
|
||||
stream = ExtResource("5_6i5wl")
|
||||
|
||||
[connection signal="animation_finished" from="AnimatedSprite2D" to="." method="AnimationEnded"]
|
||||
[connection signal="area_entered" from="LightSense" to="." method="LightEntered"]
|
||||
[connection signal="area_exited" from="LightSense" to="." method="LightExited"]
|
||||
[connection signal="body_entered" from="Activation" to="." method="PlayerActivated"]
|
||||
[connection signal="body_entered" from="PlayerCollision" to="." method="PlayerEntered"]
|
||||
[connection signal="body_exited" from="PlayerCollision" to="." method="PlayerLeft"]
|
||||
|
|
|
@ -52,10 +52,12 @@ public partial class Watcher : Node2D
|
|||
case State.LitUp:
|
||||
_isLitUp = false;
|
||||
|
||||
((AudioStreamPlayer2D)FindChild("SighPlayer2D")).Play();
|
||||
|
||||
var newPosition = (_player.Position - Position).Normalized();
|
||||
if (newPosition.IsZeroApprox())
|
||||
newPosition = new Vector2(0, -1);
|
||||
Position += newPosition * Constants.HalfScreenSize.Length();
|
||||
Position = _player.Position + newPosition * Constants.HalfScreenSize * 1.5f; // TODO: magic number
|
||||
|
||||
HideEye();
|
||||
break;
|
||||
|
@ -166,9 +168,6 @@ public partial class Watcher : Node2D
|
|||
|
||||
private void LightEntered(Area2D area)
|
||||
{
|
||||
if (CurrentState is State.Waiting or State.Opening or State.Teleporting or State.LitUp)
|
||||
return;
|
||||
|
||||
if (area.GetParentOrNull<GameCamera>() is null)
|
||||
return; // Not a flashlight
|
||||
|
||||
|
@ -176,6 +175,15 @@ public partial class Watcher : Node2D
|
|||
GD.Print("watcher: light enter");
|
||||
}
|
||||
|
||||
private void LightExited(Area2D area)
|
||||
{
|
||||
if (area.GetParentOrNull<GameCamera>() is null)
|
||||
return; // Not a flashlight
|
||||
|
||||
_isLitUp = false;
|
||||
GD.Print("watcher: light exit");
|
||||
}
|
||||
|
||||
private void PlayerEntered(Node2D body)
|
||||
{
|
||||
if (body is not Player player)
|
||||
|
|
BIN
sounds/enemies/watcher_sigh.ogg
Normal file
BIN
sounds/enemies/watcher_sigh.ogg
Normal file
Binary file not shown.
19
sounds/enemies/watcher_sigh.ogg.import
Normal file
19
sounds/enemies/watcher_sigh.ogg.import
Normal file
|
@ -0,0 +1,19 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://dsq2yxiprufht"
|
||||
path="res://.godot/imported/watcher_sigh.ogg-bfbde4309fc35e2cdd747ecf2c90413b.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sounds/enemies/watcher_sigh.ogg"
|
||||
dest_files=["res://.godot/imported/watcher_sigh.ogg-bfbde4309fc35e2cdd747ecf2c90413b.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
Loading…
Add table
Reference in a new issue