EnableAmbientParticles - Weather

From the Fallout4 CreationKit Wiki
Revision as of 18:33, 28 April 2015 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Weather Script Enables or disables ambient particle effects coming from the weather. == Syntax == <source lang=...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Weather Script

Enables or disables ambient particle effects coming from the weather.

Syntax[edit | edit source]

Function EnableAmbientParticles(bool abEnable = true) native global

Parameters[edit | edit source]

  • abEnable - Whether to enable or disable the effects

Return Value[edit | edit source]

None

Examples[edit | edit source]

;Disables ambient particles
Weather.EnableAmbientParticles(false)


;Enables ambient particles again
Weather.EnableAmbientParticles()

See Also[edit | edit source]

Weather Script