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