X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=SugarCubes.pde;h=21bd8ac3d648823c76b0752b235a28968b70d165;hb=a8d55ade10d68a95188105282c2c453816b20708;hp=dac639a1a787b145e0eeb1385b264ffac81b7704;hpb=e7f14d4d86fc5f0228895b610971a032fa096394;p=SugarCubes.git diff --git a/SugarCubes.pde b/SugarCubes.pde index dac639a..21bd8ac 100644 --- a/SugarCubes.pde +++ b/SugarCubes.pde @@ -22,10 +22,10 @@ * 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[] patterns(GLucose glucose) { return new LXPattern[] { - + // Slee new Swarm(glucose), new SpaceTime(glucose), @@ -40,9 +40,10 @@ LXPattern[] patterns(GLucose glucose) { new CubeEQ(glucose).setEligible(false), new PianoKeyPattern(glucose).setEligible(false), - // Dan - new Pong(glucose), + // DanH new Noise(glucose), + new Play(glucose), + new Pong(glucose), // Alex G new SineSphere(glucose), @@ -71,12 +72,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), @@ -96,6 +107,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), }; @@ -109,4 +128,3 @@ LXEffect[] effects(GLucose glucose) { new ColorFuckerEffect(glucose), }; } -