limboai/config.py

101 lines
1.9 KiB
Python
Raw Normal View History

2022-08-28 10:54:34 +00:00
# config.py
def can_build(env, platform):
return True
def configure(env):
pass
2022-11-01 20:31:22 +00:00
def get_doc_path():
return "doc_classes"
# def get_icons_path():
# return "icons"
2022-11-01 20:31:22 +00:00
def get_doc_classes():
return [
"BBAabb",
"BBArray",
"BBBasis",
"BBBool",
"BBByteArray",
"BBColor",
"BBColorArray",
"BBDictionary",
"BBFloat",
2023-07-20 20:15:30 +00:00
"BBFloatArray",
2022-11-01 20:31:22 +00:00
"BBInt",
"BBIntArray",
"BBNode",
"BBParam",
"BBPlane",
"BBQuat",
2023-07-20 20:15:30 +00:00
"BBQuaternion",
2022-11-01 20:31:22 +00:00
"BBRealArray",
"BBRect2",
2023-07-20 20:15:30 +00:00
"BBRect2i",
2022-11-01 20:31:22 +00:00
"BBString",
"BBStringArray",
2023-07-20 20:15:30 +00:00
"BBStringName",
2022-11-01 20:31:22 +00:00
"BBTransform",
"BBTransform2D",
2023-07-20 20:15:30 +00:00
"BBTransform3D",
2022-11-01 20:31:22 +00:00
"BBVariant",
"BBVector2",
"BBVector2Array",
2023-07-20 20:15:30 +00:00
"BBVector2i",
2022-11-01 20:31:22 +00:00
"BBVector3",
"BBVector3Array",
2023-07-20 20:15:30 +00:00
"BBVector3i",
"BBVector4",
"BBVector4i",
2022-11-01 20:31:22 +00:00
"BehaviorTree",
2023-07-20 20:15:30 +00:00
"BehaviorTreeView",
2022-11-01 20:31:22 +00:00
"Blackboard",
"BTAction",
"BTAlwaysFail",
"BTAlwaysSucceed",
2023-08-10 11:04:53 +00:00
"BTCheckAgentProperty",
2023-08-09 08:33:04 +00:00
"BTCheckTrigger",
2023-08-08 13:06:01 +00:00
"BTCheckVar",
2022-11-01 20:31:22 +00:00
"BTComposite",
"BTCondition",
"BTConsolePrint",
"BTCooldown",
"BTDecorator",
"BTDelay",
"BTDynamicSelector",
"BTDynamicSequence",
"BTFail",
"BTForEach",
"BTInvert",
"BTNewScope",
"BTParallel",
"BTPlayer",
"BTProbability",
"BTRandomSelector",
"BTRandomSequence",
"BTRandomWait",
"BTRepeat",
"BTRepeatUntilFailure",
"BTRepeatUntilSuccess",
"BTRunLimit",
"BTSelector",
"BTSequence",
"BTSetVar",
2022-11-01 20:31:22 +00:00
"BTState",
"BTSubtree",
"BTTask",
"BTTimeLimit",
"BTWait",
"BTWaitTicks",
"LimboHSM",
"LimboState",
"LimboUtility",
]