Table of Contents

Enum AudioStreamRandomizer.PlaybackModeEnum

Namespace
Godot
Assembly
GodotSharp.dll
public enum AudioStreamRandomizer.PlaybackModeEnum : long

Fields

Random = 1

Pick 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 = 0

Pick 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 = 2

Play 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.