mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-07-04 01:21:17 +00:00
Sound effects
This commit is contained in:
parent
80a13d047d
commit
60ab375572
41 changed files with 504 additions and 15 deletions
|
|
@ -1,9 +1,11 @@
|
|||
[gd_scene load_steps=25 format=3 uid="uid://b0gpbkxdfbnjh"]
|
||||
[gd_scene load_steps=27 format=3 uid="uid://b0gpbkxdfbnjh"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b2bpqbfeqi4ge" path="res://Scripts/Activables/ForceField.cs" id="1_yxhr6"]
|
||||
[ext_resource type="Texture2D" uid="uid://gc24sjyj47x6" path="res://Sprites/Actors/ForceFieldHorizontal.png" id="2_12wxm"]
|
||||
[ext_resource type="Shader" uid="uid://0ruey5bjl7mh" path="res://Shaders/Blink.gdshader" id="2_q7pky"]
|
||||
[ext_resource type="Shader" uid="uid://cjdl1m3psohju" path="res://Shaders/scanlines_static.tres" id="2_qbobr"]
|
||||
[ext_resource type="AudioStream" uid="uid://ciuv2acfujlys" path="res://SFX/Artninja_Forcefield_Enable.wav" id="5_8cguw"]
|
||||
[ext_resource type="AudioStream" uid="uid://ccxjo86nvcl54" path="res://SFX/Artninja_Forcefield_Disable.wav" id="6_3s51g"]
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_fipgw"]
|
||||
shader = ExtResource("2_q7pky")
|
||||
|
|
@ -175,4 +177,13 @@ gravity_scale = 0.0
|
|||
visible = false
|
||||
shape = SubResource("RectangleShape2D_f2rl6")
|
||||
|
||||
[node name="ActivationSound" type="AudioStreamPlayer2D" parent="."]
|
||||
position = Vector2(0, 1)
|
||||
stream = ExtResource("5_8cguw")
|
||||
max_distance = 200.0
|
||||
|
||||
[node name="DeactivationSound" type="AudioStreamPlayer2D" parent="."]
|
||||
stream = ExtResource("6_3s51g")
|
||||
max_distance = 200.0
|
||||
|
||||
[connection signal="animation_changed" from="AnimatedSprite2D" to="." method="_on_animated_sprite_2d_animation_changed"]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
[gd_scene load_steps=5 format=3 uid="uid://byms2dhliyux0"]
|
||||
[gd_scene load_steps=7 format=3 uid="uid://byms2dhliyux0"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://c1q7esgfnbvsf" path="res://Scripts/Activables/Teleporter.cs" id="1_juavy"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://w4jlaryen3we" path="res://Resources/Sprites/teleporter.tres" id="2_k58t7"]
|
||||
[ext_resource type="AudioStream" uid="uid://c4uxtkynonomm" path="res://SFX/teleporter_start.wav" id="3_ox1iw"]
|
||||
[ext_resource type="AudioStream" uid="uid://cq1880lc1iwsa" path="res://SFX/teleporter_end.wav" id="4_ildd2"]
|
||||
|
||||
[sub_resource type="CircleShape2D" id="CircleShape2D_kwj8m"]
|
||||
radius = 4.12311
|
||||
|
|
@ -38,7 +40,15 @@ frame_progress = 0.462812
|
|||
z_index = 2
|
||||
emitting = false
|
||||
amount = 50
|
||||
process_material = SubResource("ParticleProcessMaterial_we5sc")
|
||||
lifetime = 0.8
|
||||
process_material = SubResource("ParticleProcessMaterial_we5sc")
|
||||
|
||||
[node name="TeleportStart" type="AudioStreamPlayer2D" parent="."]
|
||||
stream = ExtResource("3_ox1iw")
|
||||
max_distance = 100.0
|
||||
|
||||
[node name="TeleportEnd" type="AudioStreamPlayer2D" parent="."]
|
||||
stream = ExtResource("4_ildd2")
|
||||
max_distance = 100.0
|
||||
|
||||
[connection signal="body_entered" from="." to="." method="_on_body_entered"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue