Bow and Arrow Project

Hello All,

Here I came up with new problem…:face_with_spiral_eyes:

Actually i want to make simulation of Bow and arrow but i don’t come to understand how to make a “Bow String” Effect with unity3d.

If anybody have any package or sample project or some guidelines related to this then please help me on the same.

Thanks
Ashish

I think it would be quite easy. What you need is…

A sprite that represents the string. You will need two of these in scene.
An empty object, call it link, at the bows tip, where string ties to. Again, you will need two of these.
One more empty object which will act as a link between the two halves of string.

On touch, pull, each string, maintains its correct ends on the bow tips. The other ends of the string always touch, the third, mid link. The third mid link always is placed at touch position. Do some math to calculate the tangent between the touch pt and bow tip points. Rotate string accordingly. Stretch streing accordingly.

Hopefully that helps.