Merge commit '1843c454bd' as 'engine'
This commit is contained in:
commit
e7cc4cd72f
13965 changed files with 7502032 additions and 0 deletions
22
engine/modules/gdscript/config.py
Normal file
22
engine/modules/gdscript/config.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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",
|
||||
"GDScriptLanguageProtocol",
|
||||
"GDScriptSyntaxHighlighter",
|
||||
"GDScriptTextDocument",
|
||||
"GDScriptWorkspace",
|
||||
]
|
||||
|
||||
|
||||
def get_doc_path():
|
||||
return "doc_classes"
|
||||
Loading…
Add table
Add a link
Reference in a new issue