26.01.28 - WI.XRLib 코드 제거 및 적용된 기능 수정 작업 - 종합 진행, 작업 진행, 생산 진행, 조립 진행, 최종 검사, 설비 대시보드 데이터 가데이터로 변경
17 lines
334 B
C#
17 lines
334 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Panel_Effect : MonoBehaviour
|
|
{
|
|
public void ActivePanel()
|
|
{
|
|
gameObject.SetActive(true);
|
|
gameObject.transform.SetAsLastSibling();
|
|
}
|
|
public void DeactivePanel()
|
|
{
|
|
gameObject.SetActive(false);
|
|
}
|
|
}
|