pandemonium_engine/modules/steering_ai/config.py

49 lines
1009 B
Python
Raw Normal View History

def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_classes():
return [
"GSAIUtils",
"GSAITargetAcceleration",
"GSAISteeringBehavior",
"GSAISteeringAgent",
"GSAIPath",
"GSAIGroupBehavior",
"GSAIAgentLocation",
"GSAIProximity",
"GSAIRadiusProximity",
"GSAIInfiniteProximity",
2023-01-14 03:14:27 +01:00
"GSAIArrive",
"GSAIAvoidCollisions",
"GSAIBlend",
"GSAICohesion",
"GSAIEvade",
"GSAIFace",
"GSAIFlee",
"GSAIFollowPath",
"GSAILookWhereYouGo",
"GSAIMatchOrientation",
"GSAIPriority",
"GSAIPursue",
"GSAISeek",
"GSAISeparation",
"GSAIKinematicBody2DAgent",
"GSAIKinematicBody3DAgent",
"GSAIRigidBody2DAgent",
"GSAIRigidBody3DAgent",
"GSAISpecializedAgent",
]
def get_doc_path():
return "doc_classes"
def get_license_file():
return "COPYRIGHT.txt"