瀏覽代碼

Add the new game mechanism

Use the start position node to spawn the player.
DricomDragon 5 年之前
父節點
當前提交
e18085cb0a
共有 2 個文件被更改,包括 8 次插入3 次删除
  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