pandemonium_engine_minimal/editor_modules/text_editor/config.py
2023-12-14 21:54:22 +01:00

24 lines
363 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("text_editor", ["editor_code_editor"], False)
return True
def configure(env):
pass
def get_doc_classes():
return [
"TextEditorFile",
]
def get_doc_path():
return "doc_classes"