@Quadraxas: you only see the window, because the model is not closed at the bottom.
This is not a bug in the shader, but a mistake in the geometry of the model! wink

@Cowabanga: Well, I want to sell it for 10 euro, but I have to check out, how much taxes I have to pay...and see if it's profitable...

@EvilSOB: as I said, shader model 2 is not supported yet,there are no fallbacks, at the moment. But when I make the support, it would be nice, if you can test it again smile

Hints: YOU can hold the Shift button and move the object to copy it(can't copy groups at the moment).
With Ctrl you can group objects temporary. Hold Ctrl an click on the parameters in the GUI to move/rotate/scale all values.

Oh, and if you want a better bloom change this:
Code:
function RenderPlugins()
{
	Render_Bloom();
	Render_Shadows();
	//you can add more plugins here	
}

TO:
Code:
function RenderPlugins()
{
	Render_Shadows();
	Render_Bloom(); //blooms over the shadow,looks better!
	//you can add more plugins here	
}



Last edited by Chris3D; 03/27/09 15:59.