SetCloudsEnabled
Jump to navigation
Jump to search
This function will enable or disable clouds, This is useful for race maps that spawn high up as clouds can cause low FPS.
Syntax
bool setCloudsEnabled( bool Enabled )
Required Arguments
- Enabled: a bool determining if clouds should be shown (true) to show clouds (false) to hide them
Returns
Returns true if the clouds where shown or hidden succesfully, false if an invalid argument was specified.
Example
Click to collapse [-]
ServerThis example hides the ammo and weapon displays for players when they join.
function disableClouds () setCloudsEnabled( false ) -- Hide the clouds for all players when the resource starts end -- Make our hudChanger function called when the player joins addEventHandler ( "onResourceStart", getResourceRootElement(getThisResource()), disableClouds )