mv VRMShaders namespace to UniGLTF

This commit is contained in:
Masataka SUMI
2024-07-20 23:47:45 +09:00
parent d0dcdf09fc
commit e9da5e2b7b
148 changed files with 107 additions and 225 deletions

View File

@@ -2,10 +2,10 @@ namespace UniGLTF.GltfViewer
{
public static class OpenFileDialog
{
public static VRMShaders.PathObject Show(string title, params string[] extensions)
public static PathObject Show(string title, params string[] extensions)
{
#if UNITY_STANDALONE_WIN
return VRMShaders.PathObject.FromFullPath(FileDialogForWindows.FileDialog(title, extensions));
return PathObject.FromFullPath(FileDialogForWindows.FileDialog(title, extensions));
#else
UnityEngine.Debug.LogWarning("Non-Windows runtime file dialogs are not yet implemented.");
return default;