Octo.gd 517 B

123456789101112131415161718192021222324252627282930
  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 attack(from: Vector2, angle: float):
  10. rotation = angle
  11. position = from
  12. linear_velocity = Vector2(rand_range(min_speed, max_speed), 0).rotated(angle)
  13. func _on_VisibilityNotifier2D_screen_exited():
  14. die()
  15. func _on_Spawner_reset():
  16. die()
  17. func die():
  18. queue_free()