summaryrefslogtreecommitdiffstats
path: root/Scripts/YOTSCore.cs
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-02-19 15:46:55 -0800
committeryum <yum.food.vr@gmail.com>2025-02-19 15:46:55 -0800
commit183853d545929ae55d852f9acc5d5fc1229fc9f1 (patch)
tree2da6028d7a112a2b6ae8b5f2ec93605c9a222f7e /Scripts/YOTSCore.cs
parent8e2ecd131aa6b77b8e6642cea06fc68ef39c3d81 (diff)
Remove unused constructors
Diffstat (limited to 'Scripts/YOTSCore.cs')
-rw-r--r--Scripts/YOTSCore.cs17
1 files changed, 1 insertions, 16 deletions
diff --git a/Scripts/YOTSCore.cs b/Scripts/YOTSCore.cs
index a4d3add..4ec3343 100644
--- a/Scripts/YOTSCore.cs
+++ b/Scripts/YOTSCore.cs
@@ -47,7 +47,7 @@ namespace YOTS
[SerializeField]
public string menuPath = "/";
- // The default value of the toggle.
+ // The default value of the toggle. Range from 0-1.
// For example, if you want a gimmick to start toggled off, set this to
// 0.0f.
[SerializeField]
@@ -60,12 +60,6 @@ namespace YOTS
// Whether the corresponding VRChat parameter is saved.
[SerializeField]
public bool saved = true;
-
- public ToggleSpec(string name) {
- this.name = name;
- }
-
- public ToggleSpec() {}
}
[System.Serializable]
@@ -87,15 +81,6 @@ namespace YOTS
// The value of the blendshape when the toggle is on. Range from 0-100.
[SerializeField]
public float onValue = 100.0f;
-
- public BlendShapeSpec(string path, string blendShape, float offValue = 0, float onValue = 100) {
- this.path = path;
- this.blendShape = blendShape;
- this.offValue = offValue;
- this.onValue = onValue;
- }
-
- public BlendShapeSpec() {}
}
[System.Serializable]