I have a Player Gameobject on which i have a Rigidbody with help of which i am moving it !
I have a hand gameObject in its child and i want to press a key to add Torque force on that game object !
I tried to add Rigidbody to hand to but the whole gameoject started to go through to colliders due to Gravity of Parent GameObject and some other weired motions were accorring
Hello.
As far as I know, and as Manual says:
“Force can be applied only to an active Rigidbody”
So if no rigidbody, no forces can be applied.
The question i make to you is, why want to add force? what you pretend to do? why not simple change its transform with a corutine?
Bye!
@tormentoarmagedoom I want my Player to punch enemy with hand so without adding force on Hand how can player punch the opponent !
Got it Thank you !