Main.gd 247 B

123456789101112131415
  1. extends Node2D
  2. export (PackedScene) var mob
  3. var score = 0
  4. func _ready():
  5. randomize() # Plant seed for random number generation
  6. func _on_StartTimer_timeout():
  7. $MobTimer.start()
  8. $ScoreTimer.start()
  9. func _on_ScoreTimer_timeout():
  10. score += 1