mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-21 14:00:08 +08:00
939e63c297
* add HelpURL Attribute Now you can open website with clicking ? button on the inspector * docs: use language redirect --------- Co-authored-by: bd_ <bd_@nadena.dev>
32 lines
836 B
C#
32 lines
836 B
C#
using UnityEngine;
|
|
using VRC.SDK3.Avatars.ScriptableObjects;
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
|
{
|
|
[AddComponentMenu("Modular Avatar/MA Menu Installer")]
|
|
[HelpURL("https://modular-avatar.nadena.dev/docs/reference/menu-installer?lang=auto")]
|
|
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();
|
|
}
|
|
|
|
public override void ResolveReferences()
|
|
{
|
|
// no-op
|
|
}
|
|
}
|
|
} |