config.py 273 B

12345678910111213141516171819
  1. def can_build(env, platform):
  2. return True
  3. def configure(env):
  4. pass
  5. def get_doc_classes():
  6. return [
  7. "@GDScript",
  8. "GDScript",
  9. "GDScriptFunctionState",
  10. "GDScriptNativeClass",
  11. ]
  12. def get_doc_path():
  13. return "doc_classes"