mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-05-13 17:02:07 +02:00
23 lines
354 B
Python
23 lines
354 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"GDDragonBones",
|
|
"GDArmatureDisplay",
|
|
"GDDisplay",
|
|
"GDBone2D",
|
|
"GDDragonBonesResource",
|
|
"GDSlot",
|
|
"GDOwnerNode",
|
|
"GDMesh"
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes" |