Spell sounds are no longer global, also tweaked volumes (#8961)

This commit is contained in:
Jessica M
2022-06-19 14:07:00 -07:00
committed by GitHub
parent ee9ba8d569
commit 1baee5f306
3 changed files with 10 additions and 4 deletions

View File

@@ -17,8 +17,7 @@ public sealed class KnockSpellEvent : InstantActionEvent
/// <summary>
/// Volume control for the spell.
/// -6f is default because the base soundfile is really loud
/// </summary>
[DataField("knockVolume")]
public float KnockVolume = -6f;
public float KnockVolume = 5f;
}

View File

@@ -7,4 +7,11 @@ public sealed class TeleportSpellEvent : WorldTargetActionEvent
{
[DataField("blinkSound")]
public SoundSpecifier BlinkSound = new SoundPathSpecifier("/Audio/Magic/blink.ogg");
/// <summary>
/// Volume control for the spell.
/// </summary>
[DataField("blinkVolume")]
public float BlinkVolume = 5f;
}