Hello I am trying to make a ragdoll player in unity 2d. All the parts of the character are held together by hinges and I'm trying to make it move. I do not want to use animations as I prefer a real ragdoll. My current movement isn't working, here is my code :)`
bool aKey = false;
float speedl = -20f;
private Rigidbody2D rb2D;
private void Start()
{
rb2D = gameObject.AddComponent<Rigidbody2D>();
bool aKey = Input.GetKey(KeyCode.A);
}
// Update is called once per frame
void Update()
{
if(aKey == true)
{
rb2D.AddForce(transform.forward * speedl);
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…