RF 층 버튼 변경 및 UI 드래그 오류 수정

This commit is contained in:
정영민
2025-04-08 12:28:18 +09:00
parent 77f7f6c102
commit 3cfc9d136a
10 changed files with 107 additions and 112 deletions

View File

@@ -72,6 +72,7 @@ public class Panel_ToolBar : PanelBase
if (!string.IsNullOrEmpty(destFilePath))
{
File.Delete(destFilePath);
File.Move(sourcePath, destFilePath);
}
else

View File

@@ -66,6 +66,8 @@ namespace CHN
var isActive = protocol.isSuccess;
Image_State.gameObject.SetActive(isActive);
var color = protocol.isSuccess ? new Color(0, 245, 0) : new Color(245, 0, 0);
ErrorMessage.color = color;
ErrorMessage.text = protocol.errorMessage;
}
}