local drop = display.newImageRect( "images/raindrop.png", 3, 9 );
drop.x = rnd(screenX, screenWidth);
drop.y = screenY + 20;
table.insert ( rainParticles, drop );
physics.addBody ( drop, "kinematic", {density=1, friction=0, bounce=0});
drop:applyForce( 0, 50, drop.x, drop.y );
I’m trying to get the drops to fall downward at a constant speed. The drops appear on the screen but do not move. If I use “dynamic”, they will drop, but seeing the rain accelerate is not realistic. [import]uid: 52127 topic_id: 10704 reply_id: 310704[/import]