mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-11-14 04:57:19 +01:00
16cc3efb43
Fixes #45
21 lines
578 B
GDScript
21 lines
578 B
GDScript
# Base type for group-based steering behaviors.
|
|
# @category - Base types
|
|
class_name GSAIGroupBehavior
|
|
extends GSAISteeringBehavior
|
|
|
|
# Container to find neighbors of the agent and calculate group behavior.
|
|
var proximity: GSAIProximity
|
|
|
|
var _callback := funcref(self, "_report_neighbor")
|
|
|
|
|
|
func _init(agent: GSAISteeringAgent, _proximity: GSAIProximity).(agent) -> void:
|
|
self.proximity = _proximity
|
|
|
|
|
|
# Internal callback for the behavior to define whether or not a member is
|
|
# relevant
|
|
# @tags - virtual
|
|
func _report_neighbor(_neighbor: GSAISteeringAgent) -> bool:
|
|
return false
|