X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=SugarCubes.pde;h=2156bad83a925de5a7dbdcba9c6123e7585970ad;hb=cc8b3f8210cea5377cc7e28116626e7bc4defa7a;hp=472285283397867711152f1d6d1a4946dfea190e;hpb=e28f168cec8ae5a8c25cae159af94f5b0aa7b342;p=SugarCubes.git diff --git a/SugarCubes.pde b/SugarCubes.pde index 4722852..2156bad 100644 --- a/SugarCubes.pde +++ b/SugarCubes.pde @@ -22,18 +22,13 @@ * 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 Flitters(glucose), new Swarm(glucose), - //new ScreenScrape(glucose), new SpaceTime(glucose), new ShiftingPlane(glucose), new AskewPlanes(glucose), @@ -48,7 +43,7 @@ LXPattern[] patterns(GLucose glucose) { // DanH new Noise(glucose), - gplay=new Play(glucose), // XXX do this properly + new Play(glucose), new Pong(glucose), // Alex G @@ -78,12 +73,22 @@ LXPattern[] patterns(GLucose glucose) { new TimSpheres(glucose), // Ben + // new Sandbox(glucose), + new TowerParams(glucose), new DriveableCrossSections(glucose), new GranimTestPattern2(glucose), - + + //JR + new Gimbal(glucose), + // Sam new JazzRainbow(glucose), + // Arjun + new TelevisionStatic(glucose), + new AbstractPainting(glucose), + new Spirality(glucose), + // Basic test patterns for reference, not art new TestCubePattern(glucose), new TestTowerPattern(glucose), @@ -103,6 +108,14 @@ LXPattern[] patterns(GLucose glucose) { LXTransition[] transitions(GLucose glucose) { return new LXTransition[] { new DissolveTransition(lx), + new MultiplyTransition(glucose), + new ScreenTransition(glucose), + new BurnTransition(glucose), + new DodgeTransition(glucose), + new OverlayTransition(glucose), + new AddTransition(glucose), + new SubtractTransition(glucose), + new SoftLightTransition(glucose), new SwipeTransition(glucose), new FadeTransition(lx), }; @@ -112,8 +125,8 @@ LXEffect[] effects(GLucose glucose) { return new LXEffect[] { new FlashEffect(lx), new BoomEffect(glucose), - //new DesaturationEffect(lx), - //new ColorFuckerEffect(glucose), - new DualBlender(glucose), + new BlurEffect(glucose), + new DesaturationEffect(lx), + new ColorFuckerEffect(glucose), }; }