<feat> 로봇 정보 패널 (Y버튼) 생성
This commit is contained in:
@@ -12,6 +12,7 @@ public class AppManager : MonoBehaviour
|
||||
|
||||
[SerializeField] private ProgramView view;
|
||||
[SerializeField] private TCPView tcpView;
|
||||
[SerializeField] private RobotInfoView robotInfoView;
|
||||
[SerializeField] private RobotController robotController;
|
||||
|
||||
private InteractionView leftInteractionView;
|
||||
@@ -50,7 +51,7 @@ public class AppManager : MonoBehaviour
|
||||
model = new ProgramModel(hostip, tcpPort, udpPort, robotController);
|
||||
await model.InitializeAsync();
|
||||
|
||||
if (view == null || tcpView == null || robotController == null ||
|
||||
if (view == null || tcpView == null || robotInfoView== null || robotController == null ||
|
||||
pointManagerView == null || popupView == null || pathLineView == null)
|
||||
{
|
||||
Debug.LogError("AppManager의 인스펙터에 [Static Views]가 모두 할당되지 않음", this);
|
||||
@@ -90,6 +91,7 @@ public class AppManager : MonoBehaviour
|
||||
model,
|
||||
view,
|
||||
tcpView,
|
||||
robotInfoView,
|
||||
leftInteractionView, rightInteractionView,
|
||||
pointManagerView,
|
||||
popupView,
|
||||
|
||||
Reference in New Issue
Block a user