raining but how do i do it ??

as above

can someone give me an idea ??

i guess you could try doing them as particles but it sure gonna be slow as hell

Try looking at this link…
http://www.aoml.noaa.gov/general/WWW000/text/cseed.html

okay, i will take alook at the link

but it doesnt says anything helpful

[This message has been edited by user4e3 (edited 08-04-2002).]

Hi…

I’m thinking that the easiest and fastest would be to draw them as lines using glLineStipple to generate the gaps bewteen drops. Since you probably don’t want to draw a drop for each element of rain because of the speed considerations, you could just use short lines. This might also give the impression of motion blur to the drops too.

Worth a shot

Bode

or you might want to handle each ‘streak’ of rain as a particle. but instead of using a quad or triangle for the particle use a line instead. you would draw the line from the previous location of the particle to the current position of the particle. just a suggestion :stuck_out_tongue:

thanks for the suggestions
i will try them out