EqualizerEffect
Documentation for the EqualizerEffect asset type.
Location
Audio/EQ
Use in Your Files
Add this to your JSON files for IDE autocompletion and validation:
"$schema": "https://hytaledb.ginco.gg/schemas/EqualizerEffect.schema.json" Schema
LowGain
NullableNumberOrSpecial
Low band gain in decibels.
LowCutOff
NullableNumberOrSpecial
Low band cutoff frequency in Hz.
LowMidGain
NullableNumberOrSpecial
Low-mid band gain in decibels.
LowMidCenter
NullableNumberOrSpecial
Low-mid band center frequency in Hz.
LowMidWidth
NullableNumberOrSpecial
Low-mid band width.
HighMidGain
NullableNumberOrSpecial
High-mid band gain in decibels.
HighMidCenter
NullableNumberOrSpecial
High-mid band center frequency in Hz.
HighMidWidth
NullableNumberOrSpecial
High-mid band width.
HighGain
NullableNumberOrSpecial
High band gain in decibels.
HighCutOff
NullableNumberOrSpecial
High band cutoff frequency in Hz.
All of
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "EqualizerEffect.json",
"title": "EqualizerEffect",
"description": "An asset used to define a 4-band equalizer audio effect.",
"type": "object",
"allOf": [
{
"$ref": "base.schema.json"
}
],
"properties": {
"LowGain": {
"description": "Low band gain in decibels.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
},
"LowCutOff": {
"description": "Low band cutoff frequency in Hz.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
},
"LowMidGain": {
"description": "Low-mid band gain in decibels.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
},
"LowMidCenter": {
"description": "Low-mid band center frequency in Hz.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
},
"LowMidWidth": {
"description": "Low-mid band width.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
},
"HighMidGain": {
"description": "High-mid band gain in decibels.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
},
"HighMidCenter": {
"description": "High-mid band center frequency in Hz.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
},
"HighMidWidth": {
"description": "High-mid band width.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
},
"HighGain": {
"description": "High band gain in decibels.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
},
"HighCutOff": {
"description": "High band cutoff frequency in Hz.",
"$ref": "base.schema.json#/$defs/NullableNumberOrSpecial"
}
}
}