Browse Source

Add score and start timers

DricomDragon 5 years ago
parent
commit
bcd600a9b9
2 changed files with 9 additions and 1 deletions
  1. 7 1
      Main.gd
  2. 2 0
      Main.tscn

+ 7 - 1
Main.gd

@@ -2,8 +2,14 @@ extends Node2D
 
 export (PackedScene) var mob
 
-var score
+var score = 0
 
 func _ready():
 	randomize() # Plant seed for random number generation
 
+func _on_StartTimer_timeout():
+	$MobTimer.start()
+	$ScoreTimer.start()
+
+func _on_ScoreTimer_timeout():
+	score += 1

+ 2 - 0
Main.tscn

@@ -31,3 +31,5 @@ curve = SubResource( 1 )
 [node name="MobSpawnLocation" type="PathFollow2D" parent="MobPath"]
 position = Vector2( -1.05261, 2.78944 )
 rotation = -6.07153e-08
+[connection signal="timeout" from="ScoreTimer" to="." method="_on_ScoreTimer_timeout"]
+[connection signal="timeout" from="StartTimer" to="." method="_on_StartTimer_timeout"]