SetCloudsEnabled
From Multi Theft Auto: Wiki
This function will enable or disable clouds. This is useful for race maps which are placed high up as clouds can cause low FPS.
Syntax
bool setCloudsEnabled ( bool enabled )
Required Arguments
- enabled: A boolean value determining if clouds should be shown. Use true to show clouds and false to hide them.
Returns
Returns true if the cloud state was changed succesfully, false if an invalid argument was specified.
Example
Click to collapse [-]
ServerThis example Disables clouds for all players
function disableClouds () setCloudsEnabled ( false ) -- Hide the clouds for all players when the resource starts end addEventHandler ( "onResourceStart", getResourceRootElement(), disableClouds )
See Also
- areTrafficLightsLocked
- getAircraftMaxVelocity
- getCloudsEnabled
- getFarClipDistance
- getFogDistance
- getGameSpeed
- getGravity
- getHeatHaze
- getJetpackMaxHeight
- getJetpackWeaponEnabled
- getMinuteDuration
- getMoonSize
- getOcclusionsEnabled
- getRainLevel
- getSkyGradient
- getSunColor
- getSunSize
- getTime
- getTrafficLightState
- getWeather
- getWindVelocity
- getZoneName
- isGarageOpen
- removeWorldModel
- resetFarClipDistance
- resetFogDistance
- resetHeatHaze
- resetMoonSize
- resetRainLevel
- resetSkyGradient
- resetSunColor
- resetSunSize
- resetWindVelocity
- restoreAllWorldModels
- restoreWorldModel
- setAircraftMaxVelocity
- setCloudsEnabled
- setFarClipDistance
- setFogDistance
- setGameSpeed
- setGarageOpen
- setGravity
- setHeatHaze
- setInteriorSoundsEnabled
- setJetpackWeaponEnabled
- setMinuteDuration
- setMoonSize
- setOcclusionsEnabled
- setRainLevel
- setSkyGradient
- setSunColor
- setSunSize
- setTime
- setTrafficLightState
- setTrafficLightsLocked
- setWeather
- setWeatherBlended
- setWindVelocity