mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-03-22 02:16:16 -05:00
13 lines
275 B
C#
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
|