Revert "自写输入系统"

This reverts commit e4c6ee8559.
This commit is contained in:
2025-05-27 22:34:51 +08:00
parent e4c6ee8559
commit 7e2052b384
7 changed files with 55401 additions and 55662 deletions

View File

@@ -13,21 +13,10 @@ namespace NBF
_rigidbody = GetComponent<Rigidbody>();
}
private void LateUpdate()
{
// BindPosition();
}
private void FixedUpdate()
{
if (!target) return;
BindPosition();
}
private void BindPosition()
{
// _rigidbody.MovePosition(target.position);
_rigidbody.position = target.position;
_rigidbody.MovePosition(target.position);
}
}
}