728x90
Action
-
Action 으로 다른 스크립트 함수 가져오는 방법3D/Unity 2022. 10. 10. 09:52
Action 으로 다른 스크립트 함수 가져오는 방법 예제 : Test 클래스에서 Target 클래스 내 함수를 가져오기 Test 클래스 using System.Collections; using System.Collections.Generic; using UnityEngine; public class Test : MonoBehaviour { void Start() { Target.target(); } } Target 클래스 using System.Collections; using System.Collections.Generic; using UnityEngine; using System; public class Target : MonoBehaviour { public static Action target; ..