예제 #1
0
파일: Genie.cs 프로젝트: PWLPavan/Pavan
        private bool IsLaunchValid()
        {
#if UNITY_ANDROID && !UNITY_EDITOR
            if (Debug.isDebugBuild)
            {
                return(true);
            }

            return(AndroidHelper.GetIntentExtra("origin") == "Genie");
#else
            return(true);
#endif
        }