-
Notifications
You must be signed in to change notification settings - Fork 235
Typedefs #5648
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Typedefs #5648
Changes from 26 commits
93dee8f
5f8764f
43fb1f2
3a96d9d
b0108ac
c37b3cd
d83be1d
cf84b8c
52a3fa2
52f5b1e
a582b2e
33669c1
b5ed758
fd1108c
c0b7c8c
05e3bb4
dcf8577
9281e30
352fb45
b1cefef
8b8b91e
dcb4173
647ae7b
c5b50b7
2ea30cb
34dd119
1c84c63
148e13c
ad7f3e8
2cfa2df
51563ea
77df3e5
9a5056d
a6e82dd
c3f0e1e
02ea2cc
bb24798
da753da
d5070eb
36a93c3
fbfd40a
dc9a16d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [submodule "recoil-lua-library"] | ||
| path = recoil-lua-library | ||
| url = https://github.com/beyond-all-reason/recoil-lua-library | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| { | ||
| "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json", | ||
| "diagnostics.globalsRegex": ["CMD_.*"], | ||
| "diagnostics.globals": [ | ||
| "gadget", | ||
| "widget", | ||
| "VFS", | ||
| "UnitDefs", | ||
| "UnitDefNames", | ||
| "FeatureDefs", | ||
| "ModularCommDefsShared", | ||
| "piece", | ||
| "GG", | ||
| "Script", | ||
| "WG", | ||
| "widgetHandler", | ||
| "widget", | ||
| "GameData", | ||
| "Shared", | ||
| "gadget", | ||
| "DEFS", | ||
| "LOG", | ||
| "FeatureDefNames", | ||
| "SendToUnsynced", | ||
| "CMD", | ||
| "WeaponDefs", | ||
| "CMDTYPE", | ||
| "WeaponDefNames" | ||
| //,{ "name": "script", "include": "scripts/**.lua" } | ||
| ], | ||
| "runtime.version": "Lua 5.1", | ||
| "diagnostics.disable": [ | ||
| "duplicate-set-field", | ||
| "cast-local-type" // because it is frequently used | ||
| ], | ||
| "completion.requireSeparator": "/", | ||
| "runtime.path": [ | ||
| "?", | ||
| "?.lua" | ||
| ], | ||
| "runtime.special": { | ||
| "include":"require", | ||
| "VFS.Include":"require", | ||
| "shard_include": "require" | ||
| }, | ||
| "workspace.library": [ | ||
| "recoil-lua-library/**" | ||
| ], | ||
| "workspace.ignoreDir": [ | ||
| "scripts/**" | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -152,7 +152,6 @@ local function MyLoadString(str, filename) | |
| return chunk, str2 | ||
| end | ||
|
|
||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. random whitespace change in an otherwise untouched file, here and in unit_tech_k.lua |
||
| function VFS.Include(filename, enviroment, mode) | ||
| local str = LoadFileSafe(filename, mode) | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { | ||
| "folders": [ | ||
| { | ||
| "path": "." | ||
| }, | ||
| { | ||
| "path": "scripts" | ||
| } | ||
| ], | ||
| "settings": {} | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| { | ||
| "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json", | ||
| "diagnostics.globalsRegex": ["CMD_.*"], | ||
| "diagnostics.globals": [ | ||
| "VFS", | ||
| "UnitDefs", | ||
| "UnitDefNames", | ||
| "FeatureDefs", | ||
| "ModularCommDefsShared", | ||
| "piece", | ||
| "GG", | ||
| "Script", | ||
| "WG", | ||
| "widgetHandler", | ||
| "widget", | ||
| "GameData", | ||
| "Shared", | ||
| "gadget", | ||
| "DEFS", | ||
| "LOG", | ||
| "FeatureDefNames", | ||
| "SendToUnsynced", | ||
| "CMD", | ||
| "WeaponDefs", | ||
| "CMDTYPE", | ||
| "WeaponDefNames", | ||
| "script", | ||
| "StartThread", | ||
| "unitID", | ||
| "y_axis", | ||
| "x_axis", | ||
| "z_axis", | ||
| "Spin", | ||
| "StopSpin", | ||
| "SetSignalMask", | ||
| "Signal", | ||
| "EmitSfx", | ||
| "unitID", | ||
| "Turn", | ||
| "WaitForTurn", | ||
| "Sleep", | ||
| "UnitDef", | ||
| "Hide", | ||
| "Move", | ||
| "Explode", | ||
| "WaitForMove", | ||
| "Show", | ||
| "unitDefID", | ||
| "GetUnitValue", | ||
| "hat", | ||
| "SetUnitValue", | ||
| "cross", | ||
| "IsInMove" | ||
|
|
||
| //,{ "name": "script", "include": "scripts/**.lua" } | ||
| ], | ||
| "runtime.version": "Lua 5.1", | ||
| "diagnostics.disable": [ | ||
| "duplicate-set-field", | ||
| "lowercase-global" | ||
| ], | ||
| "completion.requireSeparator": "/", | ||
| "runtime.path": [ | ||
| "?", | ||
| "?.lua" | ||
| ], | ||
| "runtime.special": { | ||
| "include":"require", | ||
| "VFS.Include":"require" | ||
| }, | ||
| "workspace.library": [ | ||
| ".." | ||
| ], | ||
| "Lua.workspace.checkThirdParty": false | ||
|
|
||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,8 +28,6 @@ return { bomberassault = { | |
| air_manual_fire_weapon = 3, | ||
| manualfire_desc = [[Fire Special Weapon: Fire a cluster of temporary shield generators.]], | ||
| }, | ||
|
|
||
| selfDestructAs = [[ESTOR_BUILDING]], | ||
|
||
| floater = true, | ||
| footprintX = 4, | ||
| footprintZ = 4, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Scary, do submodules with with stuff like rapid or infra steam depot?