UniVRM/Assets/VRM_Samples/SimpleViewer/FileDialog/WebGLUtil.cs
2025-01-27 19:34:28 +09:00

13 lines
275 B
C#

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