mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-22 13:07:58 +01:00
10 lines
355 B
GDScript
10 lines
355 B
GDScript
class_name GSAIFlee
|
|
extends GSAISeek
|
|
|
|
# Calculates acceleration to take an agent directly away from a target agent.
|
|
# @category - Individual behaviors
|
|
|
|
func _calculate_steering(acceleration: GSAITargetAcceleration) -> void:
|
|
acceleration.linear = ((agent.position - target.position).normalized() * agent.linear_acceleration_max)
|
|
acceleration.angular = 0
|