I have a sprite with Platform behavior, which has to throw grenades at the cursor whenever the player presses the mouse button. I made the grenade's movement by using
Apply Physics force 30 toward (Mouse.X, Mouse.Y) at image point 0
Thing is, this only works well if the Sprite is not moving. When it's walking around, he moves faster than the grenade, which makes it too hard to aim...
Develop games in your browser. Powerful, performant & highly capable.
I would try something like
Apply Physics force 30 + Sprite.speed toward (Mouse.X, Mouse.Y) at image point 0
But I don't know if it would work...