About Store Forum Documentation Contact



Post Reply 
Raining System
Author Message
siwykon Offline
Member

Post: #1
Raining System
How I can create a rain or snow?
I should create particle or is better way to do this?
03-23-2011 11:02 AM
Find all posts by this user Quote this message in a reply
Dwight Offline
Member

Post: #2
RE: Raining System
Check the roadmap, as of yet, there is no "Weather" system.

Though you could make some nifty things with particles and random factors, determining what particle and sound effects should be played at what area at what particular point in time.

SnowCloud Entertainment - We are recruiting!
http://www.sc-entertainment.com
03-23-2011 12:05 PM
Find all posts by this user Quote this message in a reply
llynx Offline
Member

Post: #3
RE: Raining System
Haven't had time to implement this but it should be pretty easy to do:

http://www1.cs.columbia.edu/CAVE/project...in_ren.php
03-23-2011 07:43 PM
Find all posts by this user Quote this message in a reply
Truelegend Offline
Member

Post: #4
RE: Raining System
Set Particles to the same position as player + and set radius about 35 m (its good for optimization).
04-02-2011 02:11 PM
Find all posts by this user Quote this message in a reply
siwykon Offline
Member

Post: #5
RE: Raining System
But I want to create rain with collisions. When I'm in house rain should not exist.
04-02-2011 05:09 PM
Find all posts by this user Quote this message in a reply
Truelegend Offline
Member

Post: #6
RE: Raining System
I think EE have function to set visible or invisible. So write function which check you are in home if you are set rain invisible if you are out set visible smile. Just combine with C++ and EE.

pseudo code:
Code:
if ( inside ) // check out is player inside
{
     rain->setVisible(false);//particle system off (rain)/(snow)
}
else if( outside ) // check out is player outside
{
    rain->setVisible(true);//particle system on (rain)/(snow)
}
(This post was last modified: 04-02-2011 05:31 PM by Truelegend.)
04-02-2011 05:26 PM
Find all posts by this user Quote this message in a reply
Seba Offline
Member

Post: #7
RE: Raining System
Basic weather system that i wrote using fog and particle to have rain. If you need something like that i can search for code.

http://vimeo.com/10291234
(This post was last modified: 04-02-2011 06:02 PM by Seba.)
04-02-2011 06:01 PM
Find all posts by this user Quote this message in a reply
siwykon Offline
Member

Post: #8
RE: Raining System
Please search the code and send me it or send it on any website where I can download it.
04-11-2011 04:59 AM
Find all posts by this user Quote this message in a reply
siwykon Offline
Member

Post: #9
RE: Raining System
Problem solved. Thx Seba.
04-14-2011 09:18 AM
Find all posts by this user Quote this message in a reply
davidvp Offline
Member

Post: #10
RE: Raining System
Seba mind to share it blushing?
Would be great smile
04-22-2011 11:06 PM
Find all posts by this user Quote this message in a reply
Seba Offline
Member

Post: #11
RE: Raining System
siwykon rewrote it and added here:
http://www.esenthel.com/community/showth...p?tid=3502
04-22-2011 11:21 PM
Find all posts by this user Quote this message in a reply
davidvp Offline
Member

Post: #12
RE: Raining System
ahh cool thanks siwykon and seba smile
04-22-2011 11:58 PM
Find all posts by this user Quote this message in a reply
Post Reply