<fix> 위치 기록 API 재설정 및 위치 수정 시 반투명로봇 수정, 컨트롤러 Grab할당 버그 해결
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user