Skip to content
Forum Archive

superscope query

5 posts

gelo#

superscope query

hey guys im wonderin if you can guide me on creating a simple box that changes brightness depending on the sound comming in.

so basically a time domain scope but is brightest when the wave is at its peak?

if oyu see what i mean?

thanks
Warrior of the Light#
I really don't get it..

I think you mean a (rotating?) 3D 'wireframe' (open) box where the lines are the scopes, but with brightness instead of vertical movement.. Then, how would time be involved? or am I completely wrong?
gelo#
na all im trying to do is create a solid square which changes brightness goverend by the sound NOT the beat.
QOAL#
Here is a quicky made one:

(Add a superscope and use this as the code.)

Init:
n=1000;

Frame:
asp=h/w;
c=0;

Point:
x=(i-.5)*asp;
y=if(c,0,1)-.5;
c=bnot(c);

col=getspec(0.1,.1,0);
red=col;green=col;blue=col;


Hope that helps.