Hello,
I am trying to shoot a cricle onto another circle. The first circle has to bounce off the second one, while the second one is standing still. Can someone give me a hint how I can achieve this? In fact it has to be cost efficient due to mobile game programming.
Thank you so far ![]()
Do you mean circle or sphere?
– MrVerdouxCan't you just use the rigidbody component? Calculations will probably be way much more optimize than anything you will come up with. This should make you feel like using the rigidbody component, http://en.wikipedia.org/wiki/Elastic_collision
– fafaseIs the game 2D? or 3D?
– SpinnernicholasI make the same question as fafase. Why not use a rigidbody? It does that out of the box.
– diegzumillo_1It
– ttt81s supposed to be 2D. And this is the reason why I dont use rigidbody. It has to stay in 2 dimensions, and when using rigidbody, chances are it breaks the third axis. Or is it possible to fix the heightaxis?