X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=SugarCubes.pde;h=472285283397867711152f1d6d1a4946dfea190e;hb=2f1840a64de3f7d3ca1a51693db9c049a8924d1d;hp=bc70626a384391726f08d3fff4c6d8d13401063d;hpb=8185ec8f39f534dacd6cb36f129394c423e0d5b6;p=SugarCubes.git diff --git a/SugarCubes.pde b/SugarCubes.pde index bc70626..4722852 100644 --- a/SugarCubes.pde +++ b/SugarCubes.pde @@ -22,15 +22,21 @@ * If you're an artist, create a new tab in the Processing environment with * your name. Implement your classes there, and add them to the list below. */ +LXPattern gplay; LXPattern[] patterns(GLucose glucose) { return new LXPattern[] { + new Gimbal(glucose), + + // DMK + // Slee - new ShiftingPlane(glucose), - new AskewPlanes(glucose), new Swarm(glucose), + //new ScreenScrape(glucose), new SpaceTime(glucose), + new ShiftingPlane(glucose), + new AskewPlanes(glucose), new Blinders(glucose), new CrossSections(glucose), new Psychedelia(glucose), @@ -40,9 +46,13 @@ LXPattern[] patterns(GLucose glucose) { new CubeEQ(glucose).setEligible(false), new PianoKeyPattern(glucose).setEligible(false), - // Dan - new Pong(glucose), + // DanH new Noise(glucose), + gplay=new Play(glucose), // XXX do this properly + new Pong(glucose), + + // Alex G + new SineSphere(glucose), // Shaheen new HelixPattern(glucose).setEligible(false), @@ -79,6 +89,9 @@ LXPattern[] patterns(GLucose glucose) { new TestTowerPattern(glucose), new TestProjectionPattern(glucose), new TestStripPattern(glucose), + new TestBassMapping(glucose), + new TestFloorMapping(glucose), + new TestSpeakerMapping(glucose), // new TestHuePattern(glucose), // new TestXPattern(glucose), // new TestYPattern(glucose), @@ -99,7 +112,8 @@ LXEffect[] effects(GLucose glucose) { return new LXEffect[] { new FlashEffect(lx), new BoomEffect(glucose), - new DesaturationEffect(lx), + //new DesaturationEffect(lx), + //new ColorFuckerEffect(glucose), + new DualBlender(glucose), }; } -