summaryrefslogtreecommitdiffstats
path: root/YOTSNDMFConfig.cs
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-02-19 03:26:58 -0800
committeryum <yum.food.vr@gmail.com>2025-02-19 03:27:16 -0800
commit3c7d7df216fe1537362b19520b304cc6e5d856a6 (patch)
tree25520012d433f6e188bfef08a80329ef7c0db284 /YOTSNDMFConfig.cs
parent0675266fac2d1b9b1af9b89b5830bc7efedfed21 (diff)
organize, update readme
Diffstat (limited to 'YOTSNDMFConfig.cs')
-rw-r--r--YOTSNDMFConfig.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/YOTSNDMFConfig.cs b/YOTSNDMFConfig.cs
deleted file mode 100644
index 0609d18..0000000
--- a/YOTSNDMFConfig.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-#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