3D Rad - Free 3D game maker - Forum

This forum is now archived!

This forum is locked, and is a read-only version. A new community-ran forum can be found at classdev.net

News:

The 3DRad community can be found at classdev.net.

Pages: [1]

Author Topic: Bloom implementation  (Read 2027 times)

« on: August 31, 2009, 02:08:42 AM »
Hi

i have looked at the bloom demo and cant figure out how to implement a set bloom value for the whole project. i imagine it is just a short script i have no previous coding experience please can someone direct me to a tut or explain to me what needs to be done and linked to what

thanks
When God gives you lemons, You..................FIND A NEW GOD!!!
(youtube:powerthirst)

Iowegian

« Reply #1 on: August 31, 2009, 02:23:23 AM »
Heya,

Read this page http://www.3drad.com/CamChase.php .  At the bottom you will see "Internal Parameters"  These will be available when you link a sript object to the chase cam.

For example, in your script, to activate bloom:

Code: [Select]
void Main()
{
  OUT_2 = 2;
}

That will activate bloom for the camera. OUT_2 = 1 would be for blur.

Then you have Filter A - D. These are the different settings for the bloom effect (make sure you read the link I posted above). Here's another example;

Code: [Select]
void Main()
{
   OUT_2 = 2; //Activate the bloom filter
   OUT_6 = 1; //Bloom intensity
}

Just link a script to your chase came and read the bottom of the page I linked and you should understand what's going on. If you don't understand something don't hesitate to ask.
« Last Edit: August 31, 2009, 02:30:40 AM by Iowegian »
« Reply #2 on: August 31, 2009, 03:29:37 AM »
wow  :D
I think that is the best and most detailed answer i ever got THANKS DUDE!!
ill check it out when i get home *skips away happily*
When God gives you lemons, You..................FIND A NEW GOD!!!
(youtube:powerthirst)
« Reply #3 on: September 04, 2009, 07:49:57 PM »
i have an issue where it lags to like 0.05 FPS(1 frame per 20 seconds) when i use camera filters. is there anything i can do?oh an also "get a better computer" will not be accepted because my computer has a 200 GB harddrive and an awesome graphics card
« Reply #4 on: September 05, 2009, 03:36:31 AM »
Get a better gfx card :)
Bloom effects uses alot of videoram to render.
Also try with the lastest drivers from you manufacturerer.
« Reply #5 on: September 06, 2009, 03:23:09 PM »
but like,every other 3drad feature is great for me ,along with the fact that my display driver allows me to play every 3d game ive tried and everything has GREAT quality,but just bloom and blue lag the camera so it doesnt move
« Reply #6 on: September 07, 2009, 10:11:28 AM »
i have an awesome computer too, but bloom kills me on 3d rad.
i have 128mb vid ram, i think bloom doubles the vram usage or something (like 256mb video req)

basically, resize the screen to tiny to make it work.

Currently using 7.22
« Reply #7 on: September 09, 2009, 08:03:47 AM »
i have an awesome computer too, but bloom kills me on 3d rad.
i have 128mb vid ram, i think bloom doubles the vram usage or something (like 256mb video req)

basically, resize the screen to tiny to make it work.

this didnt work
« Reply #8 on: November 05, 2009, 11:32:26 PM »
Get a better gfx card :)
Bloom effects uses alot of videoram to render.
Also try with the lastest drivers from you manufacturerer.
whenever i try to install a driver it doesnt work saying  things like it is the wrong type  or your computer doesnt need it
Pages: [1]