diff --git a/Assets/UniGLTF/Runtime/UniGLTF/IO/FileSystemStorage.cs b/Assets/UniGLTF/Runtime/UniGLTF/IO/FileSystemStorage.cs index 61208db1e..748714d8b 100644 --- a/Assets/UniGLTF/Runtime/UniGLTF/IO/FileSystemStorage.cs +++ b/Assets/UniGLTF/Runtime/UniGLTF/IO/FileSystemStorage.cs @@ -24,11 +24,6 @@ namespace UniGLTF { return m_bytes; } - - public string GetPath(string url) - { - return null; - } } /// @@ -52,18 +47,6 @@ namespace UniGLTF ; return new ArraySegment(bytes); } - - public string GetPath(string url) - { - if (url.FastStartsWith("data:")) - { - return null; - } - else - { - return Path.Combine(m_root, url).Replace("\\", "/"); - } - } } /// @@ -82,10 +65,5 @@ namespace UniGLTF { return _gltf.buffers[0].GetBytes(); } - - public string GetPath(string url) - { - return null; - } } } diff --git a/Assets/UniGLTF/Runtime/UniGLTF/IO/ZipArchiveStorage.cs b/Assets/UniGLTF/Runtime/UniGLTF/IO/ZipArchiveStorage.cs index eaee1d74c..de38cfc9c 100644 --- a/Assets/UniGLTF/Runtime/UniGLTF/IO/ZipArchiveStorage.cs +++ b/Assets/UniGLTF/Runtime/UniGLTF/IO/ZipArchiveStorage.cs @@ -381,10 +381,5 @@ namespace UniGLTF.Zip throw new NotImplementedException(found.CompressionMethod.ToString()); } - - public string GetPath(string url) - { - return null; - } } }