mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-04-27 09:07:06 -05:00
15 lines
368 B
C#
15 lines
368 B
C#
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
|
|
}
|
|
}
|
|
}
|