From 183853d545929ae55d852f9acc5d5fc1229fc9f1 Mon Sep 17 00:00:00 2001 From: yum Date: Wed, 19 Feb 2025 15:46:55 -0800 Subject: Remove unused constructors --- Scripts/YOTSCore.cs | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'Scripts') 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] -- cgit v1.2.3