-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored and cleaned up the dance step loading.
- Loading branch information
Remy Porter
committed
Jul 2, 2015
1 parent
4dbcdee
commit 53c3333
Showing
3 changed files
with
8 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Machine.add(me.dir() + "/stepDir.ck"); | ||
Machine.add(me.dir() + "/stopStep.ck"); | ||
Machine.add(me.dir() + "/spin.ck"); | ||
Machine.add(me.dir() + "/animate.ck"); |
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
Machine.add(me.dir() + "/stepBase.ck"); | ||
Machine.add(me.dir() + "/stepDir.ck"); | ||
Machine.add(me.dir() + "/stopStep.ck"); | ||
Machine.add(me.dir() + "/danceConfig.ck"); | ||
Machine.add(me.dir() + "/stepBase.ck"); |
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
Machine.add(me.dir() + "/drone.ck"); | ||
Machine.add(me.dir() + "/beatDetect.ck"); | ||
Machine.add(me.dir() + "/dances/steps.ck"); | ||
Machine.add(me.dir() + "/dances/stepLoader.ck"); | ||
1::second => now; | ||
Machine.add(me.dir() + "/dances/dance.ck"); |