HOME | DD

DarK--MatteR — DarK_AvS VIII_OSC_Minipack

Published: 2004-12-14 18:16:44 +0000 UTC; Views: 970; Favourites: 6; Downloads: 338
Redirect to original
Description My new 3D Stuff...
Related content
Comments: 5

zen-x [2005-01-07 14:55:40 +0000 UTC]

Suprised you got this out so fast. By far my favourate preset is 'osci sky', (really like the trippy particle lights as they flow by) as this LOOK's by far the most interesting also I really like the abstractness of 'Dark XOR Existence' maybe you could play with the focal length to make the object appear much bigger it looks like some deep space satalite to me.

RGB barrel is interesting, but kind of basic, not sure if this is a good thing or not, with developement, I think it could be a quite complimentry to the 2d style of yathosho.

A very good first entry into 3d ssc visuals.

Peace

zen-x

👍: 0 ⏩: 0

Independent-II- [2004-12-24 06:11:17 +0000 UTC]

Dame when I see this mini pack I thing Im sux

👍: 0 ⏩: 0

skupers [2004-12-14 18:37:31 +0000 UTC]

stands for ; p

👍: 0 ⏩: 0

skupers [2004-12-14 18:37:07 +0000 UTC]

These are very nice 3d presets, especially if they're your first. They're a bit slow though. I'll give a few tips:

In general:
- Multiplying is faster than division. It'll save a few fps if you replace all "/2" with "*0.5", etc. You can test the speed of different operators and function using "loop(2000,function)" in an empty superscope. I get about 18 fps for a n=800 ssc with loop(2000,n/2); and about 31 for loop(2000,n*0.5);.
- You're using too much points for each superscope. Maybe you could try using a higher linesize instead.
- You don't have to specify pi in the init anymore in AVS 2.81b. $pi is now a built-in constant.

RGB Barrel
- It is much faster to use multiplication instead of the pow function where possible: pow(x1,4) is slower than x1*x1*x1*x1.

Oscillo Sky
- The rotation of the dynmov will be smoother if you using the following code for in the frame and beat sections:

frame: t01=t01+p001001 001*0.9+p001c*0.1;
beat: p001c=-0.1+rand(200)/1000;

👍: 0 ⏩: 1

DarK--MatteR In reply to skupers [2004-12-14 18:41:35 +0000 UTC]

Hooly shit =0
Tnx for commenting and advices

👍: 0 ⏩: 0