فهرست منبع

Add spawn instruction

DricomDragon 5 سال پیش
والد
کامیت
56b6c524de
3فایلهای تغییر یافته به همراه17 افزوده شده و 2 حذف شده
  1. 12 1
      Main.gd
  2. 4 1
      Main.tscn
  3. 1 0
      project.godot

+ 12 - 1
Main.gd

@@ -1,6 +1,6 @@
 extends Node2D
 
-export (PackedScene) var mob
+export (PackedScene) var Mob
 
 var score = 0
 
@@ -13,3 +13,14 @@ func _on_StartTimer_timeout():
 
 func _on_ScoreTimer_timeout():
 	score += 1
+
+func _on_MobTimer_timeout():
+	$MobPath/MobSpawnLocation.set_offset(randi())
+	
+	var newMob = Mob.instance()
+	
+	var direction = $MobPath/MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
+	
+	newMob.orientation = direction
+	newMob.position = $MobPath/MobSpawnLocation.position
+	newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(direction)

+ 4 - 1
Main.tscn

@@ -1,6 +1,7 @@
-[gd_scene load_steps=3 format=2]
+[gd_scene load_steps=4 format=2]
 
 [ext_resource path="res://Main.gd" type="Script" id=1]
+[ext_resource path="res://Enemy.tscn" type="PackedScene" id=2]
 
 [sub_resource type="Curve2D" id=1]
 _data = {
@@ -12,6 +13,7 @@ script = ExtResource( 1 )
 __meta__ = {
 "_edit_group_": true
 }
+Mob = ExtResource( 2 )
 
 [node name="MobTimer" type="Timer" parent="."]
 wait_time = 0.53
@@ -31,5 +33,6 @@ curve = SubResource( 1 )
 [node name="MobSpawnLocation" type="PathFollow2D" parent="MobPath"]
 position = Vector2( -1.05261, 2.78944 )
 rotation = -6.07153e-08
+[connection signal="timeout" from="MobTimer" to="." method="_on_MobTimer_timeout"]
 [connection signal="timeout" from="ScoreTimer" to="." method="_on_ScoreTimer_timeout"]
 [connection signal="timeout" from="StartTimer" to="." method="_on_StartTimer_timeout"]

+ 1 - 0
project.godot

@@ -21,6 +21,7 @@ _global_script_class_icons={
 [application]
 
 config/name="DodgeTheCreep"
+run/main_scene="res://Main.tscn"
 config/icon="res://icon.png"
 
 [display]