summaryrefslogtreecommitdiffstats
path: root/YOTSNDMFConfig.cs
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-02-19 01:00:04 -0800
committeryum <yum.food.vr@gmail.com>2025-02-19 01:00:04 -0800
commit20f37b6c6cdb14bfcff3a6de3c9a1a85a3eb053f (patch)
tree28d5234b3d0a3a1f85e9a977c1d99aa5457015f7 /YOTSNDMFConfig.cs
parent55c1a59c993935c4b80a6ee0fe9cc8eb45b4d6d0 (diff)
Begin NDMF integration
It mostly works. Weight parameter is being set to 0 which is causing it to not work. Easy enough to fix! TODO: * animations should stay in memory, never save to disk unless debugging * YOTS_weight param should be set to 1 * Generally clean up, so much "if null keep going" bullshit
Diffstat (limited to 'YOTSNDMFConfig.cs')
-rw-r--r--YOTSNDMFConfig.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/YOTSNDMFConfig.cs b/YOTSNDMFConfig.cs
new file mode 100644
index 0000000..baf92b8
--- /dev/null
+++ b/YOTSNDMFConfig.cs
@@ -0,0 +1,11 @@
+using UnityEngine;
+using VRC.SDK3.Avatars.ScriptableObjects;
+
+namespace YOTS
+{
+ public class YOTSNDMFConfig : MonoBehaviour
+ {
+ [Tooltip("The JSON configuration file.")]
+ public TextAsset jsonConfig;
+ }
+}