X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=SugarCubes.pde;h=472285283397867711152f1d6d1a4946dfea190e;hb=e27a8652bec75b053fbc2a10d0757f0da7ca4766;hp=b7a5be6ad39a1be0d49838c547f4ab8ede12a3ab;hpb=0b1785e38f0b453bfa576225c6f0364b966c5b8b;p=SugarCubes.git diff --git a/SugarCubes.pde b/SugarCubes.pde index b7a5be6..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,10 @@ 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), @@ -82,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), @@ -102,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), }; } -