12345678910111213141516171819202122232425262728293031323334 |
- extends Node2D
- 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
- new_game() # Remove when HUD implemented
- func _on_StartTimer_timeout():
- $MobTimer.start()
- $ScoreTimer.start()
- func _on_ScoreTimer_timeout():
- score += 1
- func _on_MobTimer_timeout():
- $MobPath/MobSpawnLocation.set_offset(randi())
- var newMob = Mob.instance()
- var newRotation = $MobPath/MobSpawnLocation.rotation + rand_range(PI / 4, 3 * PI / 4)
- newMob.rotation = newRotation
- newMob.position = $MobPath/MobSpawnLocation.position
- newMob.linear_velocity = Vector2(rand_range(newMob.min_speed, newMob.max_speed), 0).rotated(newRotation)
- add_child(newMob)
|