Star.tscn 931 B

123456789101112131415161718192021
  1. [gd_scene load_steps=5 format=3 uid="uid://bs4hylgxwbr8y"]
  2. [ext_resource type="Script" path="res://component/entity/star/Star.gd" id="1_bl1jp"]
  3. [ext_resource type="AudioStream" uid="uid://j4mgj1tvivki" path="res://component/entity/star/hjm-tesla_sound_shot.wav" id="2_io5nk"]
  4. [ext_resource type="Script" path="res://component/entity/star/Sound.gd" id="3_dccmh"]
  5. [ext_resource type="Script" path="res://component/entity/star/Repeater.gd" id="4_33e8h"]
  6. [node name="Star" type="PathFollow2D"]
  7. script = ExtResource("1_bl1jp")
  8. [node name="Sound" type="AudioStreamPlayer2D" parent="."]
  9. stream = ExtResource("2_io5nk")
  10. script = ExtResource("3_dccmh")
  11. [node name="Repeater" type="Timer" parent="."]
  12. wait_time = 2.431
  13. autostart = true
  14. script = ExtResource("4_33e8h")
  15. [connection signal="timeout" from="Repeater" to="Sound" method="_on_repeater_timeout"]
  16. [connection signal="timeout" from="Repeater" to="Repeater" method="_on_timeout"]