mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-11 04:54:17 -05:00
13 lines
265 B
C#
13 lines
265 B
C#
using UnityEngine;
|
|
|
|
|
|
namespace VRM
|
|
{
|
|
[CreateAssetMenu(menuName = "VRM/ExportObject")]
|
|
public class VRMExportObject : ScriptableObject
|
|
{
|
|
[SerializeField]
|
|
public VRMExportSettings Settings = new VRMExportSettings();
|
|
}
|
|
}
|