Archive: new preset


9th April 2004 10:49 UTC

new preset
this is my second posted preset. It's not perfect, but I like it a lot.
Have a look at it and tell me what you think, please. (also tell me what's wrong or what i could do better)


9th April 2004 11:06 UTC

Quite nice. Try to do something a little more imaginitive with textures. The moving particles and water thing has been done by everyone when they start out. Just try experimenting with more of the effects and see what you come up with.

Is that your own DM? If so it's a good start, no unnecessary bits and randomly thrown in stuff. However simple it may be you know what you're doing when you do it, which is always good.


9th April 2004 13:31 UTC

nice work.


9th April 2004 13:32 UTC

The DM is my own work. It took me a very long time to figure out how it works. It still does things that i didn't expect, and for the 3D Movement I tried almost 2 days to make it work. I did a lot of C programming in my first year at university, so I don't like it when there's unnessasary code.


9th April 2004 15:49 UTC

really good for a start!
to reduce the distortion in the distance try some alphablending:


alpha=20-sqrt(sqr(x)+sqr(y));

This line will fade the texture out after 10 repetitions.
To use it, activate the "Blend" checkbox on the DM and set "source" to "Buffer 1"
Next, add a Misc/Buffer Save (Buffer 1, Replace) and a Render/Clear Screen (black or whatever you like :) ) before it.

By doing this you tell AVS to first copy your texture to a buffer, clear the screen and then use the buffer in the DM. Alpha blending then blends between the black (or whatever you choose) screen and the image your DM produces.
I bet this step allows better movement :)

and for the (evil) back plane. this is a normal by-product of raytracing. It's the 2nd solution to the raytracing equation and is actually *behind* the camera. you can get rid of it by extending the above equation to

alpha=(20-sqrt(sqr(x)+sqr(y)))*above(z,-1);

This line sets alpha to zero if z is lower than or equal to -1(you camera is at z=-1).

9th April 2004 16:16 UTC

Thank you. I really wondered how to get rid of those distortions. It looks better now in the distance.


9th April 2004 16:18 UTC

i modified the DM a bit and attached it
i added a smoother fadeout at the borders and made z relative to the camera
i also added a circular movement

btw please read that sticky post by UnConeD about posting presets. Like him, I have a big folder where all the downloaded presets go and when I want to see a preset, I start by looking for the name of the author.