<fix> 위치 기록 API 재설정 및 위치 수정 시 반투명로봇 수정, 컨트롤러 Grab할당 버그 해결

This commit is contained in:
SOOBEEN HAN
2025-11-10 19:14:16 +09:00
parent 97d4916ff0
commit b5406395dc
23 changed files with 1162 additions and 92 deletions

View File

@@ -47,10 +47,10 @@ public class PointManagerView : MonoBehaviour, IPointManagerView
}
}
public void UpdatePointPosition(int index, RobotData pose)
public void UpdatePointPosition(int index, Vector3 pose)
{
if (index < 0 || index >= activePoints.Count) return;
activePoints[index].transform.position = ConvertRobotDataToVector3(pose);
activePoints[index].transform.position = pose;
}
public void DeletePoint(int index)