UniVRM/Assets/VRM_Samples/SimpleViewer/FileDialog/WebGLUtil.cs
2025-01-24 22:45:42 +09:00

12 lines
254 B
C#

#if UNITY_WEBGL
using System.Runtime.InteropServices;
namespace VRM.SimpleViewer
{
public static class WebGLUtil
{
[DllImport("__Internal")]
public static extern void WebGLFileDialog(string target, string message);
}
}
#endif