Octo.gd 359 B

123456789101112131415161718192021222324
  1. class_name Octo
  2. extends RigidBody2D
  3. export var min_speed = 150
  4. export var max_speed = 250
  5. var mob_types = ["walk", "swim", "fly"]
  6. func _ready():
  7. $AnimatedSprite.animation = mob_types[randi() % mob_types.size()]
  8. $AnimatedSprite.play()
  9. func _on_VisibilityNotifier2D_screen_exited():
  10. die()
  11. func _on_Spawner_reset():
  12. die()
  13. func die():
  14. queue_free()