Procházet zdrojové kódy

Add the new game mechanism

Use the start position node to spawn the player.
DricomDragon před 5 roky
rodič
revize
e18085cb0a
2 změnil soubory, kde provedl 8 přidání a 3 odebrání
  1. 6 1
      Main.gd
  2. 2 2
      Player.gd

+ 6 - 1
Main.gd

@@ -4,9 +4,14 @@ export (PackedScene) var Mob
 
 var score = 0
 
+func new_game():
+	score = 0
+	$Player.spawn($StartPositon.position)
+	$StartTimer.start()
+
 func _ready():
 	randomize() # Plant seed for random number generation
-	$StartTimer.start()
+	new_game() # Remove when HUD implemented
 
 func _on_StartTimer_timeout():
 	$MobTimer.start()

+ 2 - 2
Player.gd

@@ -5,8 +5,8 @@ signal hit
 export var speed = 400 # pixel / sec
 var screen
 
-func spawn():
-	position = (screen.position + screen.end) / 2
+func spawn(atPos):
+	position = atPos
 	show()
 	$CollisionShape2D.disabled = false