X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=SugarCubes.pde;h=4a941436e6b280c45416a44556d90bdeb330683b;hb=c2f643bd6cf077c1b8bb0a6566a57228937160e6;hp=c80a4da38fd826b5ff3616cf98f742e93691d060;hpb=467c8c60aa86396ccc96690cdaf90f41ad8f60e5;p=SugarCubes.git diff --git a/SugarCubes.pde b/SugarCubes.pde index c80a4da..4a94143 100644 --- a/SugarCubes.pde +++ b/SugarCubes.pde @@ -22,12 +22,18 @@ * 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[] { + + + + // DMK // Slee new Swarm(glucose), + //new ScreenScrape(glucose), new SpaceTime(glucose), new ShiftingPlane(glucose), new AskewPlanes(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), @@ -75,7 +82,8 @@ LXPattern[] patterns(GLucose glucose) { new TowerParams(glucose), new DriveableCrossSections(glucose), new GranimTestPattern2(glucose), - + //JR + new Gimbal(glucose), // Sam new JazzRainbow(glucose), @@ -84,6 +92,7 @@ LXPattern[] patterns(GLucose glucose) { new AbstractPainting(glucose), new Spirality(glucose), + // Basic test patterns for reference, not art new TestCubePattern(glucose), new TestTowerPattern(glucose), @@ -112,8 +121,8 @@ LXEffect[] effects(GLucose glucose) { return new LXEffect[] { new FlashEffect(lx), new BoomEffect(glucose), - new DesaturationEffect(lx), - new ColorFuckerEffect(glucose), + //new DesaturationEffect(lx), + //new ColorFuckerEffect(glucose), + new DualBlender(glucose), }; } -