mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-08-28 05:44:48 -05:00
Remove unused IStorage.GetPath
This commit is contained in:
@@ -24,11 +24,6 @@ namespace UniGLTF
|
||||
{
|
||||
return m_bytes;
|
||||
}
|
||||
|
||||
public string GetPath(string url)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -52,18 +47,6 @@ namespace UniGLTF
|
||||
;
|
||||
return new ArraySegment<byte>(bytes);
|
||||
}
|
||||
|
||||
public string GetPath(string url)
|
||||
{
|
||||
if (url.FastStartsWith("data:"))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
else
|
||||
{
|
||||
return Path.Combine(m_root, url).Replace("\\", "/");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -82,10 +65,5 @@ namespace UniGLTF
|
||||
{
|
||||
return _gltf.buffers[0].GetBytes();
|
||||
}
|
||||
|
||||
public string GetPath(string url)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -381,10 +381,5 @@ namespace UniGLTF.Zip
|
||||
|
||||
throw new NotImplementedException(found.CompressionMethod.ToString());
|
||||
}
|
||||
|
||||
public string GetPath(string url)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user