manual.lua fixes

This commit is contained in:
David Joslin 2023-11-20 16:37:03 -08:00 committed by Agent X
parent 9198616ca2
commit fbfbc15e44
1 changed files with 12 additions and 9 deletions

View File

@ -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 --