mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 08:57:34 +01:00
49 lines
1009 B
Python
49 lines
1009 B
Python
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",
|
|
|
|
"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"
|