SharedVRCStuff/MenuIconRemover/Runtime/MenuIconRemover.cs

13 lines
No EOL
356 B
C#

using UnityEngine;
namespace gay.lilyy.MenuIconRemover
{
[AddComponentMenu("LillithRosePup/VRCExpressionsMenu/Icon Remover")]
public class MenuIconRemoverConfig : MonoBehaviour, VRC.SDKBase.IEditorOnly
{
public string[] exclude = new string[0];
public bool removeOnPc = false;
public bool removeOnQuest = true;
}
}