mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 08:57:34 +01:00
22 lines
348 B
Python
22 lines
348 B
Python
|
|
|
|
def can_build(env, platform):
|
|
if not env["tools"]:
|
|
return False
|
|
|
|
env.module_add_dependencies("text_editor", ["freetype"], True)
|
|
env.module_add_dependencies("shader_editor", ["editor_code_editor"], False)
|
|
|
|
return True
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|