UniVRM/Assets/VRM_Samples/SimpleViewer/FileDialog/WebGLUtil.cs
ousttrue 717ff82f1d コード整理
* glb/gltf ロード機能をオミット => GltfViewer を参照
* inner class SimpleViewer.Loaded を別ファイルに分離
* FileDialog を別フォルダに分離
2022-10-03 16:41:21 +09:00

12 lines
225 B
C#

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