WeatherMakerSoundScriptStop Method |
Stop sounds
Namespace:
DigitalRuby.WeatherMaker
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public void Stop(
float fadeOutSeconds = 0f,
bool destroyOnStopped = false
)
Public Sub Stop (
Optional fadeOutSeconds As Single = 0F,
Optional destroyOnStopped As Boolean = false
)
public:
void Stop(
float fadeOutSeconds = 0f,
bool destroyOnStopped = false
)
member Stop :
?fadeOutSeconds : float32 *
?destroyOnStopped : bool
(* Defaults:
let _fadeOutSeconds = defaultArg fadeOutSeconds 0f
let _destroyOnStopped = defaultArg destroyOnStopped false
*)
-> unit
Parameters
- fadeOutSeconds (Optional)
- Type: SystemSingle
Fade out duration in seconds - destroyOnStopped (Optional)
- Type: SystemBoolean
Whether to destroy sounds upon stop
See Also