-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added version checking and an experimental settings toggle
- Loading branch information
1 parent
94c2b0a
commit cedb84e
Showing
7 changed files
with
176 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!--> | ||
<object> | ||
<spriteName>sOption</spriteName> | ||
<solid>0</solid> | ||
<visible>-1</visible> | ||
<depth>0</depth> | ||
<persistent>0</persistent> | ||
<parentName><undefined></parentName> | ||
<maskName><undefined></maskName> | ||
<events> | ||
<event eventtype="0" enumb="0"> | ||
<action> | ||
<libid>1</libid> | ||
<id>603</id> | ||
<kind>7</kind> | ||
<userelative>0</userelative> | ||
<isquestion>0</isquestion> | ||
<useapplyto>-1</useapplyto> | ||
<exetype>2</exetype> | ||
<functionname></functionname> | ||
<codestring></codestring> | ||
<whoName>self</whoName> | ||
<relative>0</relative> | ||
<isnot>0</isnot> | ||
<arguments> | ||
<argument> | ||
<kind>1</kind> | ||
<string>global.experimental = false; | ||
image_speed = 0; | ||
</string> | ||
</argument> | ||
</arguments> | ||
</action> | ||
</event> | ||
<event eventtype="3" enumb="0"> | ||
<action> | ||
<libid>1</libid> | ||
<id>603</id> | ||
<kind>7</kind> | ||
<userelative>0</userelative> | ||
<isquestion>0</isquestion> | ||
<useapplyto>-1</useapplyto> | ||
<exetype>2</exetype> | ||
<functionname></functionname> | ||
<codestring></codestring> | ||
<whoName>self</whoName> | ||
<relative>0</relative> | ||
<isnot>0</isnot> | ||
<arguments> | ||
<argument> | ||
<kind>1</kind> | ||
<string>if(global.experimental){ | ||
image_index = 0; | ||
} else image_index = 1; | ||
</string> | ||
</argument> | ||
</arguments> | ||
</action> | ||
</event> | ||
<event eventtype="6" enumb="4"> | ||
<action> | ||
<libid>1</libid> | ||
<id>603</id> | ||
<kind>7</kind> | ||
<userelative>0</userelative> | ||
<isquestion>0</isquestion> | ||
<useapplyto>-1</useapplyto> | ||
<exetype>2</exetype> | ||
<functionname></functionname> | ||
<codestring></codestring> | ||
<whoName>self</whoName> | ||
<relative>0</relative> | ||
<isnot>0</isnot> | ||
<arguments> | ||
<argument> | ||
<kind>1</kind> | ||
<string>global.experimental = !global.experimental; | ||
</string> | ||
</argument> | ||
</arguments> | ||
</action> | ||
</event> | ||
<event eventtype="8" enumb="0"> | ||
<action> | ||
<libid>1</libid> | ||
<id>603</id> | ||
<kind>7</kind> | ||
<userelative>0</userelative> | ||
<isquestion>0</isquestion> | ||
<useapplyto>-1</useapplyto> | ||
<exetype>2</exetype> | ||
<functionname></functionname> | ||
<codestring></codestring> | ||
<whoName>self</whoName> | ||
<relative>0</relative> | ||
<isnot>0</isnot> | ||
<arguments> | ||
<argument> | ||
<kind>1</kind> | ||
<string>draw_self(); | ||
|
||
draw_set_halign(fa_right); | ||
draw_text(x - sprite_width, y - 12, "TOGGLE EXPERIMENTAL SETTINGS"); | ||
draw_set_halign(fa_left); | ||
</string> | ||
</argument> | ||
</arguments> | ||
</action> | ||
</event> | ||
</events> | ||
<PhysicsObject>0</PhysicsObject> | ||
<PhysicsObjectSensor>0</PhysicsObjectSensor> | ||
<PhysicsObjectShape>0</PhysicsObjectShape> | ||
<PhysicsObjectDensity>0.5</PhysicsObjectDensity> | ||
<PhysicsObjectRestitution>0.100000001490116</PhysicsObjectRestitution> | ||
<PhysicsObjectGroup>0</PhysicsObjectGroup> | ||
<PhysicsObjectLinearDamping>0.100000001490116</PhysicsObjectLinearDamping> | ||
<PhysicsObjectAngularDamping>0.100000001490116</PhysicsObjectAngularDamping> | ||
<PhysicsObjectFriction>0.200000002980232</PhysicsObjectFriction> | ||
<PhysicsObjectAwake>-1</PhysicsObjectAwake> | ||
<PhysicsObjectKinematic>0</PhysicsObjectKinematic> | ||
<PhysicsShapePoints/> | ||
</object> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters