Files
OCTOPUS_TWIN-Demo/Assets/Scripts/UI/Panel_Effect.cs
정영민 897f071168 [정영민] 이전 XRLib 기능 제거 및 가데이터 변경 작업
26.01.28
- WI.XRLib 코드 제거 및 적용된 기능 수정 작업
- 종합 진행, 작업 진행, 생산 진행, 조립 진행, 최종 검사,
  설비 대시보드 데이터 가데이터로 변경
2026-01-28 17:45:31 +09:00

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);
}
}