SoundLoadOptions soundLoadOptions

The default SoundLoadOptions used by Sound.load.

The default options are used if no individual options are passed to the Sound.load method. Please note that this property is just a forward to Sound.defaultLoadOptions.

Source

static SoundLoadOptions get soundLoadOptions {
  return Sound.defaultLoadOptions;
}
void soundLoadOptions=(SoundLoadOptions options)

Source

static set soundLoadOptions(SoundLoadOptions options) {
  Sound.defaultLoadOptions = options;
}