Fix crosssections
[SugarCubes.git] / SugarCubes.pde
CommitLineData
49815cc0
MS
1/**
2 * +-+-+-+-+-+ +-+-+-+-+-+
3 * / /| |\ \
0e3c5542 4 * / / + + \ \
49815cc0
MS
5 * +-+-+-+-+-+ | +-+-+-+-+ | +-+-+-+-+-+
6 * | | + / \ + | |
7 * + THE + / / \ \ + CUBES +
8 * | |/ +-+-+-+-+-+-+-+ \| |
9 * +-+-+-+-+-+ | | +-+-+-+-+-+
10 * + +
11 * | SUGAR |
12 * + +
13 * | |
14 * +-+-+-+-+-+-+-+
15 *
16 * Welcome to the Sugar Cubes! This Processing sketch is a fun place to build
17 * animations, effects, and interactions for the platform. Most of the icky
18 * code guts are embedded in the GLucose library extension. If you're an
19 * artist, you shouldn't need to worry about any of that.
20 *
21 * Below, you will find definitions of the Patterns, Effects, and Interactions.
22 * If you're an artist, create a new tab in the Processing environment with
23 * your name. Implement your classes there, and add them to the list below.
24 */
25
26LXPattern[] patterns(GLucose glucose) {
27 return new LXPattern[] {
5129affb
MS
28 new ShiftingPlane(glucose),
29 new AskewPlanes(glucose),
87f6fa39
MS
30 new Swarm(glucose),
31 new SpaceTime(glucose),
254fbb68 32 new HelixPattern(glucose).setEligible(false),
466150f6
AG
33 new Pong(glucose),
34 new Noise(glucose),
87f6fa39
MS
35 new Blinders(glucose),
36 new CrossSections(glucose),
37 new Psychedelia(glucose),
254fbb68
MS
38 new CubeEQ(glucose).setEligible(false),
39 new PianoKeyPattern(glucose).setEligible(false),
a673599f 40 new GlitchPlasma(glucose),
254fbb68 41 new FireEffect(glucose).setEligible(false),
b4aaf4e4 42 new StripBounce(glucose),
254fbb68
MS
43 new SoundRain(glucose).setEligible(false),
44 new SoundSpikes(glucose).setEligible(false),
821ceae9 45 new FaceSync(glucose),
80785186 46
254d34c0 47 // Basic test patterns for reference, not art
bfff6bc2 48 new TestCubePattern(glucose),
186bc4d3 49 new TestTowerPattern(glucose),
0ba6ac44 50 new TestProjectionPattern(glucose),
254fbb68 51 new TestStripPattern(glucose),
186bc4d3
MS
52 // new TestHuePattern(glucose),
53 // new TestXPattern(glucose),
54 // new TestYPattern(glucose),
55 // new TestZPattern(glucose),
f3f5a876 56
49815cc0
MS
57 };
58}
59
60LXTransition[] transitions(GLucose glucose) {
61 return new LXTransition[] {
3f8be614 62 new DissolveTransition(lx),
49815cc0 63 new SwipeTransition(glucose),
3f8be614 64 new FadeTransition(lx),
49815cc0
MS
65 };
66}
67
68LXEffect[] effects(GLucose glucose) {
69 return new LXEffect[] {
70 new FlashEffect(lx),
3f8be614 71 new BoomEffect(glucose),
49815cc0
MS
72 new DesaturationEffect(lx),
73 };
74}
75