GltfViewer

This commit is contained in:
ousttrue
2022-10-03 14:16:17 +09:00
parent e670fd66e3
commit 85702ea5b0
17 changed files with 736 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace UniGLTF.GltfViewer
{
public static class OpenFileDialog
{
public static VRMShaders.PathObject Show(string title, params string[] extensions)
{
#if UNITY_STANDALONE_WIN
return VRMShaders.PathObject.FromFullPath(FileDialogForWindows.FileDialog(title, extensions));
#else
return default;
#endif
}
}
}