Filters#
Below will show you how to control the filter object, both making a new one, or modifying an existing one.
Setting a players filter can be found here.
Getting a filter.#
There is two methods to get a filter.
You can create a new one, or you can use a pre-existing one (from a player.)
Tip
If you create a new one, then it will override pre-existing settings on the player.
If you don't want it to do that, use the From Player
method shown above!
Functions#
There is quite a few filters, and almost all have these two methods.
- set_xxxx - This allows you to set new values to the filter.
- clear_xxxx - This will completely clear the values from that filter.
Warning
clear != reset. Clearing sets the value to None
which will override existing values.
Volume#
Setting the volume of the filter settings.
Equalizer#
Add, remove and clear equalizer filter settings.
Note
You can use any BandType you would like, BandType.HZ100
is just an example.
Karaoke#
Set or remove karaoke filter settings.
Timescale#
Set or remove timescale filter settings.
Tremolo#
Set or remove tremolo filter settings.
Vibrato#
Set or remove vibrato filter settings.
Rotation#
Set or remove rotation filter settings.
Distortion#
Set or remove distortion filter settings.
Channel Mix#
Set or remove channel mix filter settings.
Low Pass#
Set or remove low pass filter settings.
Tip
All values except for the volume, can be one of three values
Float
- The number you wish to set.None
- Clears that specific value in the filter.Unset
(DEFAULT) - Leaves it at its current value (only if set prior, otherwise it will beNone
)