Stabilize limb fixation exam flow

This commit is contained in:
yangbear
2026-07-14 03:46:59 +08:00
parent 5ca24ec3b8
commit 9b4690d396
2 changed files with 62 additions and 18 deletions
@@ -179,11 +179,11 @@ public class ShoseClickHandler : MonoBehaviour
{
anim.SetBool("isCrouch", false);
}
var point2 = GameObject.Find("womanPointArray/point2");
if (point2 != null)
var point1 = GameObject.Find("womanPointArray/point1");
if (point1 != null)
{
woman.transform.position = point2.transform.position;
woman.transform.rotation = point2.transform.rotation;
woman.transform.position = point1.transform.position;
woman.transform.rotation = point1.transform.rotation;
}
}