slicktrick13579
21st July 2004 07:25 UTC
Check out my presets(noobie)opinions/suggestions welcome
This is just a duo of plugins that I created.
I would greatly appreciate any comments/suggestions/oppinions
and hopfully someone might actually like one of them :)
anyway thanks in advance.
Mr_Nudge
21st July 2004 09:16 UTC
nicely done, a little dark. Try using the movement trans d=-d and y=-y, x=-x and so on instead of mirrors, they're a lot faster.
slicktrick13579
21st July 2004 10:20 UTC
Thanks I apreciate the feedback. I made an alternate version using the movement trans as you suggested and got a few FPS higher. one question how do i accomplish radomazation with that method because it does look a bit different. thanks for you help.
Mr_Nudge
22nd July 2004 11:28 UTC
if you want things to change you need to use a dynamic movemnet with things changing on beat, i'm not sure how you would do it, im not that good at dms myself, sorry
vanderphunck
22nd July 2004 14:25 UTC
I have to fav this... But i must say that that coding IS an art. Simple is beautiful... That is why isotimescope is great.
mikm
22nd July 2004 14:35 UTC
Originally posted by Mr_Nudge
nicely done, a little dark. Try using the movement trans d=-d and y=-y, x=-x and so on instead of mirrors, they're a lot faster.
Actually, its x=abs(x), not x=-x
x=abs(x) behaves like the mirror, duplicating the right on the left.
x=-x just flips the screen
This will give you a onbeat random mirror (assuming you want it to switch between all four options).
init:
cm=0
frame:
beat:
cm=rand(4)
pixel:
x=if(equal(cm,0),abs(x),if(equal(cm,1),abs(-x),x));
y=if(equal(cm,2),abs(y),if(equal(cm,3),abs(-y),y));
Grid Size: 2x2 (any higher is wasteful)
Your presets aren't bad, but just basic. Learn superscopes and dms (read the Tips & Tricks thread on the main AVS page for help and the FAQ has links to DM and SS guides)
Mr_Nudge
23rd July 2004 03:19 UTC
just shows you, i'm not that good at dms