Animation Preview Auto Play
·
Unity/Tip
더보기 필자는 Unity로 게임을 개발하고 있다. 현재 개발에 사용중인 오브젝트의 Animation은 300개가 넘어간다. 이전에는 PreView의 Play 버튼을 눌러 일일이 하나씩 재생시켜 확인을 하였는데 이제는 이또한 귀찮아졌다... GPT 4 사용 우리의 멍청한 친구 GPT에게 "I want the preview to play automatically when an animation file is selected." 라고 질문을 했다. #if UNITY_EDITOR using UnityEngine; using UnityEditor; using UnityEditor.Animations; [InitializeOnLoad] public class AutoPlayAnimationPreview { stat..