Преглед изворни кода

Add the HUD to the mani scene

DricomDragon пре 5 година
родитељ
комит
14dd3da0d2
2 измењених фајлова са 9 додато и 2 уклоњено
  1. 4 1
      Main.gd
  2. 5 1
      Main.tscn

+ 4 - 1
Main.gd

@@ -8,14 +8,16 @@ func new_game():
 	score = 0
 	$Player.spawn($StartPositon.position)
 	$StartTimer.start()
+	$HUD.update_score(score)
+	$HUD.show_message("Get ready")
 
 func game_over():
 	$ScoreTimer.stop()
 	$MobTimer.stop()
+	$HUD.show_game_over()
 
 func _ready():
 	randomize() # Plant seed for random number generation
-	new_game() # Remove when HUD implemented
 
 func _on_StartTimer_timeout():
 	$MobTimer.start()
@@ -23,6 +25,7 @@ func _on_StartTimer_timeout():
 
 func _on_ScoreTimer_timeout():
 	score += 1
+	$HUD.update_score(score)
 
 func _on_MobTimer_timeout():
 	$MobPath/MobSpawnLocation.set_offset(randi())

+ 5 - 1
Main.tscn

@@ -1,8 +1,9 @@
-[gd_scene load_steps=5 format=2]
+[gd_scene load_steps=6 format=2]
 
 [ext_resource path="res://Main.gd" type="Script" id=1]
 [ext_resource path="res://Enemy.tscn" type="PackedScene" id=2]
 [ext_resource path="res://Player.tscn" type="PackedScene" id=3]
+[ext_resource path="res://HUD.tscn" type="PackedScene" id=4]
 
 [sub_resource type="Curve2D" id=1]
 _data = {
@@ -37,8 +38,11 @@ rotation = -6.07153e-08
 
 [node name="Player" parent="." instance=ExtResource( 3 )]
 position = Vector2( 245.983, 380.055 )
+
+[node name="HUD" parent="." instance=ExtResource( 4 )]
 [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="Player" method="spawn"]
 [connection signal="timeout" from="StartTimer" to="." method="_on_StartTimer_timeout"]
 [connection signal="hit" from="Player" to="." method="game_over"]
+[connection signal="start_game" from="HUD" to="." method="new_game"]