godot-steering-ai-framework/project_gdscript/addons/com.gdquest.godot-steering-ai-framework/Behaviors/GSAIFlee.gd

10 lines
361 B
GDScript

class_name GDGSAIFlee
extends GDGSAISeek
# Calculates acceleration to take an agent directly away from a target agent.
# @category - Individual behaviors
func _calculate_steering(acceleration: GDGSAITargetAcceleration) -> void:
acceleration.linear = ((agent.position - target.position).normalized() * agent.linear_acceleration_max)
acceleration.angular = 0