blob: 0609d18d35823598cb32558acc43c76fff888cc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#if UNITY_EDITOR
using UnityEngine;
using nadena.dev.ndmf;
using VRC.SDK3.Avatars.ScriptableObjects;
namespace YOTS
{
[DisallowMultipleComponent]
public class YOTSNDMFConfig : MonoBehaviour
{
[Tooltip("The JSON configuration file.")]
public TextAsset jsonConfig;
void OnValidate()
{
gameObject.tag = "EditorOnly";
}
}
}
#endif // UNITY_EDITOR
|