In my game I want to create a particle system that creates snow particles randomly at the top of the scene and gently pushes them to the ground for my snowball fight game. I want it to snow constantly. Please help.
Quote from: smithroat on February 02, 2013, 03:28:22 pmIn my game I want to create a particle system that creates snow particles randomly at the top of the scene and gently pushes them to the ground for my snowball fight game. I want it to snow constantly. Please help.Check out my demo on StencylForge under games. Its called "Mee - Rain" Download it and check out the scene behavior. If you need help modifying it, lemme know.
Quote from: Meestar on February 02, 2013, 04:32:51 pmQuote from: smithroat on February 02, 2013, 03:28:22 pmIn my game I want to create a particle system that creates snow particles randomly at the top of the scene and gently pushes them to the ground for my snowball fight game. I want it to snow constantly. Please help.Check out my demo on StencylForge under games. Its called "Mee - Rain" Download it and check out the scene behavior. If you need help modifying it, lemme know.Hey Dude! It works! but the snow keeps running into the tiles at the top of the scene so it doesn't fall. It just builds up at the top.
Quote from: smithroat on February 02, 2013, 05:11:05 pmQuote from: Meestar on February 02, 2013, 04:32:51 pmQuote from: smithroat on February 02, 2013, 03:28:22 pmIn my game I want to create a particle system that creates snow particles randomly at the top of the scene and gently pushes them to the ground for my snowball fight game. I want it to snow constantly. Please help.Check out my demo on StencylForge under games. Its called "Mee - Rain" Download it and check out the scene behavior. If you need help modifying it, lemme know.Hey Dude! It works! but the snow keeps running into the tiles at the top of the scene so it doesn't fall. It just builds up at the top.You have to open your snow actor, click on physics, click on the Advanced tab and set Disable Physics to Yes.
Post on Forge and I'll see what your doing wrong and help you out however I can.
Quote from: Meestar on February 02, 2013, 09:33:14 pmPost on Forge and I'll see what your doing wrong and help you out however I can.Its in forge under behaviors. just called "Snow".
Quote from: smithroat on February 02, 2013, 09:36:39 pmQuote from: Meestar on February 02, 2013, 09:33:14 pmPost on Forge and I'll see what your doing wrong and help you out however I can.Its in forge under behaviors. just called "Snow".Okay, first off NEVER use two always in the SAME behavior. Adds unnecessary lag. 2nd, your kill code should be a separate behavior attached to the snow actor. A more efficient version is:Always: if (Y of self) > (Scene Height) kill selfEDIT: Also, using set y-speed to 1 might be better than slide.
Check StencylForge for Mees - Snow. Set your behaviors up just like those.