I'm working on a game I recently posted about (another topic) and I'm using rigid bodies for the characters. I just realized today I'm not moving the character's rigid body using methods like AddForce/AddTorque. When I went to code this nothing worked! Not even the simple code below (moving object forward). What did I miss? Thanks! =).
No rigid body code working
Code (CSharp):
- public class lamboControll : MonoBehaviour {
- private Rigidbody rbdy;
- private float lamboSpeed = 10.1f;
- void Start() {
- rbdy =...