mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
40 lines
926 B
Python
40 lines
926 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
def get_doc_path():
|
|
return "docs"
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"SpineAnimation",
|
|
"SpineAnimationState",
|
|
"SpineAnimationTrack",
|
|
"SpineAtlasResource",
|
|
"SpineAttachment",
|
|
"SpineBone",
|
|
"SpineBoneData",
|
|
"SpineBoneNode",
|
|
"SpineConstraintData",
|
|
"SpineEvent",
|
|
"SpineIkConstraint",
|
|
"SpineIkConstraintData",
|
|
"SpinePathConstraint",
|
|
"SpinePathConstraintData",
|
|
"SpineSkeleton",
|
|
"SpineSkeletonDataResource",
|
|
"SpineSkeletonFileResource",
|
|
"SpineSkin",
|
|
"SpineSlot",
|
|
"SpineSlotData",
|
|
"SpineSlotNode",
|
|
"SpineSprite",
|
|
"SpineTimeline",
|
|
"SpineTrackEntry",
|
|
"SpineTransformConstraint",
|
|
"SpineTransformConstraintData",
|
|
"SpineObjectWrapper"
|
|
]
|