Exemplo n.º 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
        }
Exemplo n.º 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
        }