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