Skip to content

Commit

Permalink
Fix SetLights LDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
bqmb3 committed Jun 9, 2024
1 parent cb4a4fb commit 3889b6a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -285,14 +285,14 @@ end

--- Sets the properties of the specified lights.
-- @tparam table Changes A table containing information about the lights to be set.
-- @field Instance Part The part to which the light belongs.
-- @field "SpotLight"|"PointLight"|"SurfaceLight" LightType The type of light to be set.
-- @field[opt] number Range The range of the light.
-- @field[opt] number Brightness The brightness of the light.
-- @field[opt] Color3 Color The color of the light.
-- @field[opt] boolean Shadows Whether the light should cast shadows.
-- @field[opt] Enum.NormalId Face The face of the part to which the light is applied.
-- @field[opt] number Angle The angle of the light.
-- @tparam Instance Changes.Part The part to which the light belongs.
-- @tparam "SpotLight"|"PointLight"|"SurfaceLight" Changes.LightType The type of light to be set.
-- @tparam[opt] number Changes.Range The range of the light.
-- @tparam[opt] number Changes.Brightness The brightness of the light.
-- @tparam[opt] Color3 Changes.Color The color of the light.
-- @tparam[opt] boolean Changes.Shadows Whether the light should cast shadows.
-- @tparam[opt] Enum.NormalId Changes.Face The face of the part to which the light is applied.
-- @tparam[opt] number Changes.Angle The angle of the light.
-- @treturn nil
function F3X:SetLights(Changes)
assert(self._reinit, errors.notIntialized)
Expand Down

0 comments on commit 3889b6a

Please sign in to comment.