Skip to content

Commit

Permalink
Add missing properties to SfxTrigger
Browse files Browse the repository at this point in the history
  • Loading branch information
ascpixi committed Dec 26, 2023
1 parent 2733ee9 commit e24e307
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions GeometryDashAPI/Levels/GameObjects/Triggers/SfxTrigger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,21 @@ public class SfxTrigger : Trigger

[GameProperty("406", 1f, alwaysSet: true)]
public float Volume { get; set; } = 1f;

[GameProperty("455", 0)]
public int SfxGroup { get; set; }

[GameProperty("408", 0)]
public int Start { get; set; }

[GameProperty("410", 0)]
public int End { get; set; }

[GameProperty("409", 0)]
public int FadeIn { get; set; }

[GameProperty("411", 0)]
public int FadeOut { get; set; }

[GameProperty("407", false)]
public bool Reverb { get; set; }
Expand Down

0 comments on commit e24e307

Please sign in to comment.