X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=SugarCubes.pde;h=a89368cecd1545e2cbfd3681fd31fcccffcb56d4;hb=7c7625ec088b93148f46adc19ba8f1cb4baa8321;hp=ef89237e2223531445568c8ca3507202e2de8bb6;hpb=3661fceed6aa9b6023c31850b42b86fc807d5abb;p=SugarCubes.git diff --git a/SugarCubes.pde b/SugarCubes.pde index ef89237..a89368c 100644 --- a/SugarCubes.pde +++ b/SugarCubes.pde @@ -25,10 +25,12 @@ LXPattern[] patterns(GLucose glucose) { return new LXPattern[] { - - // Slee - new Flitters(glucose), + + new CubeCurl(glucose), + // Slee new Swarm(glucose), + new ViolinWave(glucose), + new BouncyBalls(glucose), new SpaceTime(glucose), new ShiftingPlane(glucose), new AskewPlanes(glucose), @@ -41,10 +43,11 @@ LXPattern[] patterns(GLucose glucose) { new CubeEQ(glucose).setEligible(false), new PianoKeyPattern(glucose).setEligible(false), - // DanH + // DanH new Noise(glucose), - new Play(glucose), - new Pong(glucose), + new Play (glucose), + new Pong (glucose), + new Worms(glucose), // Alex G new SineSphere(glucose), @@ -108,16 +111,16 @@ LXPattern[] patterns(GLucose glucose) { LXTransition[] transitions(GLucose glucose) { return new LXTransition[] { new DissolveTransition(lx), + new AddTransition(glucose), 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 DodgeTransition(glucose), new SwipeTransition(glucose), new FadeTransition(lx), +// new SubtractTransition(glucose), // similar to multiply - dh +// new BurnTransition(glucose), // similar to multiply - dh +// new ScreenTransition(glucose), // same as add -dh +// new SoftLightTransition(glucose), // same as overlay -dh }; }