mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-19 12:50:08 +08:00
6591f35a78
* chore: configure overrideReferences false and referenced dlls * chore: clear unused using * chore: remove unused meta file * fix: missing reference
26 lines
654 B
C#
26 lines
654 B
C#
using UnityEngine;
|
|
using VRC.SDK3.Avatars.ScriptableObjects;
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
|
{
|
|
[AddComponentMenu("Modular Avatar/MA Menu Installer")]
|
|
public class ModularAvatarMenuInstaller : AvatarTagComponent
|
|
{
|
|
public VRCExpressionsMenu menuToAppend;
|
|
public VRCExpressionsMenu installTargetMenu;
|
|
|
|
|
|
// ReSharper disable once Unity.RedundantEventFunction
|
|
void Start()
|
|
{
|
|
// Ensure that unity generates an enable checkbox
|
|
}
|
|
|
|
protected override void OnValidate()
|
|
{
|
|
base.OnValidate();
|
|
|
|
RuntimeUtil.InvalidateMenu();
|
|
}
|
|
}
|
|
} |