mirror of
https://github.com/Relintai/texture_packer.git
synced 2024-11-08 10:02:11 +01:00
17 lines
276 B
Python
17 lines
276 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"TextureMerger",
|
|
"TexturePacker",
|
|
"TextureLayerMerger",
|
|
"PackerImageResource",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|