Take animation for determining the wire
This commit is contained in:
Frank
2022-09-26 23:34:00 +02:00
parent 0731e15385
commit 2157f8e8cd
4 changed files with 54 additions and 7 deletions

View File

@@ -1,7 +1,8 @@
{
"Lua.workspace.preloadFileSize": 1000,
"Lua.diagnostics.disable": [
"undefined-doc-name"
"undefined-doc-name",
"need-check-nil"
],
"Lua.diagnostics.globals": [
"BASE",
@@ -9,9 +10,14 @@
"__Moose",
"trigger",
"coord",
"missionCommands"
"missionCommands",
"world"
],
"Lua.completion.displayContext": 5,
"Lua.runtime.version": "Lua 5.1",
"Lua.completion.callSnippet": "Both"
"Lua.completion.callSnippet": "Both",
"Lua.workspace.library": [
"${3rd}/lfs/library"
],
"Lua.workspace.checkThirdParty": false
}