Enum AudioStreamRandomizer.PlaybackModeEnum
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum AudioStreamRandomizer.PlaybackModeEnum : long
Fields
Random = 1Pick a stream at random according to the probability weights chosen for each stream. If only 1 sound is present in the pool, the same sound will always play.
RandomNoRepeats = 0Pick a stream at random according to the probability weights chosen for each stream, but avoid playing the same stream twice in a row whenever possible. If only 1 sound is present in the pool, the same sound will always play, effectively allowing repeats to occur.
Sequential = 2Play streams in the order they appear in the stream pool. If only 1 sound is present in the pool, the same sound will always play.