mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-12-28 09:47:16 +01:00
14 lines
452 B
GDScript
14 lines
452 B
GDScript
# Calculates acceleration to take an agent directly away from a target agent.
|
|
# @category - Individual behaviors
|
|
class_name GSAIFlee
|
|
extends GSAISeek
|
|
|
|
|
|
func _init(agent: GSAISteeringAgent, target: GSAIAgentLocation).(agent, target) -> void:
|
|
pass
|
|
|
|
|
|
func _calculate_steering(acceleration: GSAITargetAcceleration) -> void:
|
|
acceleration.linear = ((agent.position - target.position).normalized() * agent.linear_acceleration_max)
|
|
acceleration.angular = 0
|