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

13 lines
265 B
C#

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