[정영민] External Tools 한글 인코딩 문제 해결

26.03.11
- 설비 알람 인코딩 오류 수정
- 설비 상태 인코딩 오류 수정
- AI 시뮬레이션 결과 인코딩 오류 수정
- 생산 현황판 인코딩 오류 수정
- TopMenu 인코딩 오류 수정
This commit is contained in:
정영민
2026-03-12 10:09:05 +09:00
parent cdf760b452
commit 5c0ab9e2b0
27 changed files with 244 additions and 378 deletions

View File

@@ -14,8 +14,8 @@ namespace AZTECHWB
{
public RectTransform rectTransform;
public CompleteInfo data;
public RectTransform Default_KPI;
public RectTransform Expand_KPI;
private RectTransform Default_KPI;
private RectTransform Expand_KPI;
private TMP_Text DefaultMachineName;
private TMP_Text ExpandMachineName;
@@ -34,7 +34,7 @@ namespace AZTECHWB
private TMP_Text wordno;
public bool isInteractable;
public bool isExpand;
private bool isExpand;
[HideInInspector] public Transform targetTransform;
[HideInInspector] public Vector2 screenPosition;
@@ -139,10 +139,10 @@ namespace AZTECHWB
switch (value)
{
case "가동중":
case "가동중":
newColor = Color.green;
break;
case "비가동":
case "비가동":
newColor = Color.gray;
break;
default:
@@ -211,7 +211,7 @@ namespace AZTECHWB
public Vector2 GetSize()
{
Vector2 baseSize = rectTransform.sizeDelta;
float scale = transform.localScale.x; // UpdateScales에서 적용한 스케일
float scale = transform.localScale.x; // UpdateScales에서 적용한 스케일
return baseSize * scale;
}
}