diff --git a/autogen/lua_definitions/manual.lua b/autogen/lua_definitions/manual.lua index 2f18d474..6a80e544 100644 --- a/autogen/lua_definitions/manual.lua +++ b/autogen/lua_definitions/manual.lua @@ -21,7 +21,10 @@ gNetworkPlayers = {} gActiveMods = {} --- @type Character[] -gCharacter = {} +gCharacters = {} + +--- @type PlayerPalette[] +gPalettePresets = {} --- @type GlobalTextures gTextures = {} @@ -32,6 +35,9 @@ gObjectAnimations = {} --- @type GlobalObjectCollisionData gGlobalObjectCollisionData = {} +--- @type PaintingValues +gPaintingValues = {} + --- @alias SyncTable table --- @type SyncTable @@ -52,23 +58,20 @@ gLevelValues = {} --- @type BehaviorValues gBehaviorValues = {} ---- @type PlayerPalette[] -gPalettePresets = {} +--- @type FirstPersonCamera +--- The struct that contains the values for the first person camera +gFirstPersonCamera = {} --- @type LakituState --- The primary struct that controls the camera --- - Local player only gLakituState = {} ---- @type PaintingValues -gPaintingValues = {} - --- @type ServerSettings gServerSettings = {} ---- @type FirstPersonCamera ---- The struct that contains the values for the first person camera -gFirstPersonCamera = {} +--- @type NametagsSettings +gNametagsSettings = {} ----------- -- hooks --