We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4206a1d commit 09ebe81Copy full SHA for 09ebe81
1 file changed
GeometryDashAPI/Levels/GameObjects/Triggers/SongTrigger.cs
@@ -21,6 +21,18 @@ public class SongTrigger : Trigger
21
[GameProperty("406", 1f, alwaysSet: true)]
22
public float Volume { get; set; } = 1f;
23
24
+ [GameProperty("408", 0)]
25
+ public int Start { get; set; }
26
+
27
+ [GameProperty("409", 0)]
28
+ public int FadeIn { get; set; }
29
30
+ [GameProperty("410", 0)]
31
+ public int End { get; set; }
32
33
+ [GameProperty("411", 0)]
34
+ public int FadeOut { get; set; }
35
36
[GameProperty("413", false)]
37
public bool Loop { get; set; }
38
0 commit comments