Created
July 29, 2017 17:05
-
-
Save jbondeson/3bd16c75c41f2fdb34bdedbef675726e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# KLL Animation Issue | |
Name = KLL Animation Issue; | |
Version = 0.1; | |
Author = "jbondeson (Jeremy Bondeson) 2017"; | |
KLL = 0.5; | |
# Modified Date | |
Date = 2017-07-29; | |
# This won't work if this is the last assigned to a trigger | |
A[wont_work] <= pfunc:interp; | |
A[wont_work, 1] <= P[c:0%](0,0,255), P[c:100%](0,0,255); | |
# This will work if this is *not* the last assigned to a trigger | |
A[will_work] <= pfunc:interp; | |
A[will_work, 1] <= P[c:0%](255,0,0), P[c:100%](255,0,0); | |
# If you swap these definitions it will change which works. | |
U"ESC" : A[will_work](start); | |
U"F12" : A[wont_work](start); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment