2018-05-30 17:11:33 +00:00
|
|
|
def can_build(env, platform):
|
2022-08-04 17:11:01 +00:00
|
|
|
env.module_add_dependencies("gdscript", ["jsonrpc", "websocket"], True)
|
2016-10-30 17:44:57 +00:00
|
|
|
return True
|
2016-04-02 18:26:12 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2014-02-24 12:53:33 +00:00
|
|
|
def configure(env):
|
2016-10-30 17:44:57 +00:00
|
|
|
pass
|
2017-11-15 18:23:20 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2017-11-15 18:23:20 +00:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2019-06-18 16:04:29 +00:00
|
|
|
"@GDScript",
|
2017-11-15 18:23:20 +00:00
|
|
|
"GDScript",
|
2024-08-18 18:40:24 +00:00
|
|
|
"GDScriptSyntaxHighlighter",
|
2017-11-15 18:23:20 +00:00
|
|
|
]
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2017-11-15 18:23:20 +00:00
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|