2022-11-07 11:33:48 +08:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
using VRC.SDK3.Avatars.ScriptableObjects;
|
2022-10-05 08:34:04 +08:00
|
|
|
|
|
2022-11-11 12:39:58 +08:00
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
2022-10-05 08:34:04 +08:00
|
|
|
|
{
|
2022-11-10 09:49:00 +08:00
|
|
|
|
[AddComponentMenu("Modular Avatar/MA Menu Installer")]
|
2022-10-05 08:34:04 +08:00
|
|
|
|
public class ModularAvatarMenuInstaller : AvatarTagComponent
|
2023-02-25 15:45:24 +08:00
|
|
|
|
{
|
|
|
|
|
public VRCExpressionsMenu menuToAppend;
|
2022-10-05 08:34:04 +08:00
|
|
|
|
public VRCExpressionsMenu installTargetMenu;
|
2022-11-07 11:33:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ReSharper disable once Unity.RedundantEventFunction
|
|
|
|
|
void Start()
|
2023-02-25 15:45:24 +08:00
|
|
|
|
{
|
|
|
|
|
// Ensure that unity generates an enable checkbox
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnValidate()
|
|
|
|
|
{
|
|
|
|
|
base.OnValidate();
|
|
|
|
|
|
|
|
|
|
RuntimeUtil.InvalidateMenu();
|
|
|
|
|
}
|
2022-10-05 08:34:04 +08:00
|
|
|
|
}
|
|
|
|
|
}
|