UniVRM/Scripts/Format/VRMExportObject.cs
2018-07-20 16:04:52 +09:00

13 lines
239 B
C#

using UnityEngine;
namespace VRM
{
[CreateAssetMenu(menuName = "VRM/ExportObject")]
public class VRMExportObject : ScriptableObject
{
[SerializeField]
public VRMExportSettings Settings;
}
}