Skip to content

Commit 35a64c4

Browse files
authored
Merge pull request #32 from ascpixi/master
Add missing properties to SfxTrigger
2 parents 2733ee9 + e24e307 commit 35a64c4

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

GeometryDashAPI/Levels/GameObjects/Triggers/SfxTrigger.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,21 @@ public class SfxTrigger : Trigger
4141

4242
[GameProperty("406", 1f, alwaysSet: true)]
4343
public float Volume { get; set; } = 1f;
44+
45+
[GameProperty("455", 0)]
46+
public int SfxGroup { get; set; }
47+
48+
[GameProperty("408", 0)]
49+
public int Start { get; set; }
50+
51+
[GameProperty("410", 0)]
52+
public int End { get; set; }
53+
54+
[GameProperty("409", 0)]
55+
public int FadeIn { get; set; }
56+
57+
[GameProperty("411", 0)]
58+
public int FadeOut { get; set; }
4459

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

0 commit comments

Comments
 (0)