Switching
Yay, i got it right. I made a tunnel preset that switches between being, a cirlcle, a square, a triangle, a hexagon and a two planes. 😁
sweet!
sometimes the fog is too bright though.
If there is a heavy beat, it will spend too much time looking at the walls. Slow down the camera mvt and add a custom beat to skip 1 or 2 beats.
I just finished reviewing some presets submitted here - ugh. I need a good lift in quality of presets.
/me crosses my fingers
Not the greatest(would be much better if the switch was smooth - kinda like how UCD did it in one of his presets), but it's nice. Keep up the good work Raz.
Really sweet.
Yes it'sa kinda annoying that the shape like jumps, it would be perfect with smooth switching. But this might be hard thing to do.
Actually because of your unified texture mapping, it's dead-easy...
Changed:
- Smooth switching
- Aspect-ratio correction
- Fair shape selection
- Tweaked fog
- Tweaked rotation (so it looks at the tunnel ends more often)
- Reduced rotation intensity
your switching algorithm has the same flaw as colormap - it jumps if it changes too soon. (not that you could feasibly do that with colormap, too much of a slowdown (that BETTER damn well be why, cos there's no other good excuse).) i've got mixed feelings about the texture...you can't tell it's switched until you see the ends of the tunnel, and that is both a good and a bad thing. on one hand, you're spinning around and all of a sudden, without your knowledge, your surroundings have changed. on the other hand, it doesn't show off the dm very well, and that's the center of this preset. i think slowing down/smoothing out the rotation might help, but i'm not sure...
The texture's just there so it's got a texture to begin with. I always use the mosaic'd grain and a colourmap to start with, it just displays how the textures been done in the DM well.
I've deciphered the tweak now after finally getting some sleep. That is some damn nice tweaking. I'll have to use that technique again. 👍
Wow, UnConeD's Tweak is amazing. Sorry Raz, didn't check out the original 🙂 Im sure it's nice tho, but that smooth changing... *drools*
Hmm Atero I don't know what preset you're watching, but it should contain the following code in onbeat:
x=equal(ip,1);y=rand(5);
lc1=if(x,c1,lc1);lc2=if(x,c2,lc2);lc3=if(x,c3,lc3);lc4=if(x,c4,lc4);lc5=if(x,c5,lc5);
c1=if(x,equal(y,0),c1);c2=if(x,equal(y,1),c2);c3=if(x,equal(y,2),c3);c4=if(x,equal(y,3),c4);
I.e. only if the previous transition (governed by 'ip') has completed will it switch to the next one. Try putting a 300BPM custom bpm in front, it still switches smoothly here.