Skip to content

Commit

Permalink
add missing fields for song trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
Folleach committed Dec 26, 2023
1 parent 4206a1d commit 09ebe81
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions GeometryDashAPI/Levels/GameObjects/Triggers/SongTrigger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ public class SongTrigger : Trigger
[GameProperty("406", 1f, alwaysSet: true)]
public float Volume { get; set; } = 1f;

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

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

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

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

[GameProperty("413", false)]
public bool Loop { get; set; }

Expand Down

0 comments on commit 09ebe81

Please sign in to comment.