개발/UNITY
-
유니티 UI Fade In, Fade Out 클래스개발/UNITY 2020. 11. 4. 21:11
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; public class FIO_UI { private Graphic UI; private MonoBehaviour mono; private float time; public FIO_UI(Graphic UI, MonoBehaviour mono, float time) { this.UI = UI; this.mono = mono; this.time = time; } public void FIO(string command) { switch (command) { case "FI":..