Ejemplo n.º 1
0
        public string GetResolvedFullPath()
        {
            string result = Helper.GetFilePath(_path, _pathType);

                        #if (UNITY_EDITOR_WIN || (!UNITY_EDITOR && UNITY_STANDALONE_WIN))
            if (result.Length > 200 && !result.Contains("://"))
            {
                result = Helper.ConvertLongPathToShortDOS83Path(result);
            }
                        #endif

            return(result);
        }