From fbfbc15e44b949d9362fc40bbcf7ab700b6f5e55 Mon Sep 17 00:00:00 2001 From: David Joslin Date: Mon, 20 Nov 2023 16:37:03 -0800 Subject: [PATCH] manual.lua fixes --- autogen/lua_definitions/manual.lua | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) 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 --