Hello I have this C# script attached to player in Fixed Update:
rigidbody2D.AddTorque(Input.GetAxis ("Horizontal") * 5f);
It just won`t work. AddForce works and everything else in that script just not this.
What I have tried so far:
if(Input.GetButton("Horizontal"))
rigidbody2D.AddTorque(5f);
Even this won`t work in Update without any key check:
rigidbody2D.AddTorque(5f);
Yes script is attached, Yes object has Rigidbody2D. As I said, AddForce works, just torque not.
**Is Kinematic and Fixed angle are Checked OFF.**
Please help I am getting hopeless.
↧