This commit is contained in:
mischa 2023-09-01 15:33:53 +02:00
parent 2879348413
commit 374583aa90

View File

@ -54,6 +54,7 @@ public void OnDraggedBall(Vector3 force)
[Command]
void CmdApplyForce(Vector3 force)
{
// TODO consider applying this in FixedUpdate later
whiteBall.GetComponent<Rigidbody>().AddForce(force);
}
}