GetSunRadius
From Onset Developer Wiki
Description
Get the sun radius for the client.
Syntax
GetSunRadius()
Parameters
- This function has no parameters.
Return Value
- Returns the sun radius that was set with SetSunRadius.
Example
AddEvent("OnPlayerSpawn", function()
local radius = GetSunRadius()
AddPlayerChat("Sun radius: "..radius )
end)