MobSpawner.tscn 936 B

1234567891011121314151617181920212223
  1. [gd_scene load_steps=6 format=2]
  2. [ext_resource path="res://component/entity/spawner/MobSpawner.gd" type="Script" id=1]
  3. [ext_resource path="res://component/entity/octo/Octo.tscn" type="PackedScene" id=2]
  4. [ext_resource path="res://component/entity/wheel/Wheel.tscn" type="PackedScene" id=3]
  5. [ext_resource path="res://component/entity/chick/Chicken.tscn" type="PackedScene" id=4]
  6. [sub_resource type="Curve2D" id=1]
  7. _data = {
  8. "points": PoolVector2Array( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 480, 0, 0, 0, 0, 0, 480, 720, 0, 0, 0, 0, 0, 720, 0, 0, 0, 0, 0, 0 )
  9. }
  10. [node name="MobSpawner" type="Path2D"]
  11. curve = SubResource( 1 )
  12. script = ExtResource( 1 )
  13. mobs = [ ExtResource( 3 ), ExtResource( 4 ), ExtResource( 2 ) ]
  14. [node name="MobTimer" type="Timer" parent="."]
  15. process_mode = 0
  16. wait_time = 0.53
  17. [node name="MobSpawnLocation" type="PathFollow2D" parent="."]
  18. [connection signal="timeout" from="MobTimer" to="." method="_on_MobTimer_timeout"]