WCCC_FallingApart
Trying to be Synchronized before it falls down
Published
•3 min read
PixellyFallingApart
For this week's Creative Code challenge by @sableRaph: “FallingApart“, PixellyFallingApart is coded with Locomotion, HydraVIdeoSynth, & LiveCodeLab where the Choreography, Narrative, Sound and Visually keep falling apart.
Poetry
Paths Falling Apart
Lines not in sync
As the motion blurred within a blink
As the Movements, pull apart
Either through a Glitch
Or Choreo switch,
The patterns before,
Are no more
As there is a new set of Link
Video
Code
Locomotion
Triple Light Points
point {x = range -10 17 (osc 0.15), y = range -8 6 (osc 0.35) , intensity = range 8 35 (osc 0.15), color = 0xA08780 };
point {x = range -10 17 (osc 0.15), y = range -8 6 (osc 0.35) , intensity = range 15 35 (osc 0.25), color = 0xB08080 };
point {x = range -10 17 (osc 0.15), z = range -9 6 (osc 0.35) , intensity = range 20 45 (osc 0.25), color = 0xC08080 };
b n = dancer { url= "orDroid", size = 1,animation = [1,n*3,1,n*4,1,n*2/4,1], x= -12 + n/2, y = 1,z = -4}; for [1..16] b;
a n = dancer { url= "orDroid", size = n/24,animation = [1,n*3,1,n*4,1,n*2,1], x= -4 + n/2, y = 1.0}; for [1..17] a;
z n = dancer { url= "orDroid", size = n/32,animation = [n+4,1,n*3,1,n*2/3], x= -2 + n/2, y = -0.0}; for [1..18] z;
y n = dancer { url= "orDroid", size = n/16, animation = [n,1,n*2/4], x= -3 + n/2, y = -3.0}; for [1..19] y;
LiveCodeLab
if time % 15 < 5
if time % 2 == 0
bpm 122
play 'tap', '--x- -xx-x --x- -x-x'
play "pianoRHChord" ,'--x- -x—x-x --x- -x-x'
play 'beepC', '-x-x -x-- x--x xxx-'
else
bpm 61
play 'beepA', '--x- x-x- --x- ----'
play "voltage" ,'--x- -xx --x- ----'
play "pianoLHChord" ,'x--x--xxxx-xx---xx'
play "warm" ,'--x- -x-x --x- x-x-'
play 'snap', '--x- -x--x-- -xx- --x--'
if time % 2 == 0
bpm 144
play 'lowFlash', '--x- --x- -xx- -xx-'
play "pianoLHChord" ,'x--x--xx-'
play 'voltage', 'x-x- -x-- x-xx x-xx'
else
play 'tranceKick', '-x-x ---x x--- --xx'
play 'beepC', '-x-- ---- x--x xxx-'
play 'tic', '--x- --xx-- --x- --xx--'
play 'snap', '--x- -x--x-- -xx- --x--'
if time % 15 > 5 && time % 15 < 10
if time % 3 == 0
bpm 77
else
bpm 33
play "pianoLDChord" ,'x-x-xx—-x'
play 'penta', 'x-x- -xx- x x --x- --x-'
play 'detune', '-x-x ---x x-x x- --xx'
play 'penta', '--x- -xx- x x --x- --x-'
play 'ride', '-x-- ---- x--x xxx-'
play 'downstairs', '--x- --xx-- --x- --xx--'
play 'tense', 'x--x x --x– x -x-- -x--'
HydraVideoSynth
s0.initScreen()
src(s0).scrollX().scrollY().repeat(2.3,2.1).colorama(0.3012).blend(src(s0).scrollX().scrollY().repeat(4,4).colorama(0.4012).scale(0.95)),out()
s0.initScreen()
src(s0).modulatePixelate(src(s0).scale(0.95).scrollX().repeat(1.05,1.24)).out()




