Пример #1
0
        public static string RebuildWithoutRootSlash(string text)
        {
#if !UNITY_EDITOR && UNITY_WEBGL
            return(text);
#else// !UNITY_EDITOR && UNITY_WEBGL
            return(MakeFileUri.OnRebuild(text, false));
#endif// !UNITY_EDITOR && UNITY_WEBGL
        }
Пример #2
0
        public static string Rebuild(string text)
        {
#if !UNITY_EDITOR && UNITY_WEBGL
            return(text);
#else// !UNITY_EDITOR && UNITY_WEBGL
            return(MakeFileUri.OnRebuild(text, true));
#endif// !UNITY_EDITOR && UNITY_WEBGL
        }