mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
20 lines
322 B
Python
20 lines
322 B
Python
def can_build(env, platform):
|
|
env.module_add_dependencies("gdscript", ["jsonrpc", "websocket"], True)
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"@GDScript",
|
|
"GDScript",
|
|
"GDScriptSyntaxHighlighter",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|