preset generator

This commit is contained in:
Lillith Rose (Device: Lucia) 2025-08-18 16:38:40 -04:00
parent 95b05f9a14
commit e58dde30e2
13 changed files with 437 additions and 0 deletions

View file

@ -0,0 +1,21 @@
using System.Collections.Generic;
using UnityEngine;
using VRC.SDK3.Avatars.ScriptableObjects;
using VRC.SDKBase;
namespace gay.lilyy.PresetGenerator
{
[System.Serializable]
public class PresetParameter {
public string name;
public VRCExpressionParameters.ValueType valueType;
public float setTo;
public bool shouldChange = false;
}
public class ParameterPreset : MonoBehaviour, IEditorOnly {
public string Name = "New Preset";
[HideInInspector] // custom inspector
public List<PresetParameter> Parameters;
}
}