mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-23 09:28:07 +01:00
36 lines
638 B
Python
36 lines
638 B
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"Skeleton",
|
|
"Skin",
|
|
"SkinReference",
|
|
|
|
"BoneAttachment",
|
|
|
|
"PhysicalBone",
|
|
|
|
"SkeletonIK",
|
|
|
|
"SkeletonModificationStack3D",
|
|
|
|
"SkeletonModification3D",
|
|
"SkeletonModification3DCCDIK",
|
|
"SkeletonModification3DFABRIK",
|
|
"SkeletonModification3DJiggle",
|
|
"SkeletonModification3DLookAt",
|
|
"SkeletonModification3DStackHolder",
|
|
"SkeletonModification3DTwoBoneIK",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|