mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-14 04:57:19 +01:00
16cc3efb43
Fixes #45
34 lines
557 B
GDScript
34 lines
557 B
GDScript
extends KinematicBody2D
|
|
|
|
export var speed := 1500.0
|
|
|
|
var velocity := Vector2.ZERO
|
|
var player: Node
|
|
|
|
onready var timer := $Lifetime
|
|
|
|
|
|
func _ready() -> void:
|
|
timer.connect("timeout", self, "_on_Lifetime_timeout")
|
|
timer.start()
|
|
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
var collision := move_and_collide(velocity * delta)
|
|
if collision:
|
|
timer.stop()
|
|
clear()
|
|
collision.collider.damage(10)
|
|
|
|
|
|
func start(direction: Vector2) -> void:
|
|
velocity = direction * speed
|
|
|
|
|
|
func clear() -> void:
|
|
queue_free()
|
|
|
|
|
|
func _on_Lifetime_timeout() -> void:
|
|
clear()
|