설비 강조 효과 기능 변경

This commit is contained in:
정영민
2025-04-03 11:53:25 +09:00
parent 23449465b7
commit 75cafaf761
68 changed files with 7475 additions and 5584 deletions

View File

@@ -48,15 +48,15 @@ namespace CHN
}
}
public void MachineDashBoardOpenFromLibrary(UI_LibraryButton libraryButton)
public void MachineDashBoardOpenFromLibrary(Machine libraryMachine)
{
if (currentDashBoard != null)
{
currentDashBoard.SetActive(false);
}
var machine = libraryButton.machine;
var machine = libraryMachine;
currentDashBoard = machineDashboardTable[machine];
currentDashBoard.OpenFromLibraryButton(libraryButton);
currentDashBoard.OpenFromLibraryButton(libraryMachine);
SetDashBoardPosition();
onOpenDashboard?.Invoke();