Add missing AddComponentMenu annotations

This commit is contained in:
bd_ 2023-02-25 18:22:24 +09:00
parent d39e17a8f6
commit 99f8052dd9
2 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,7 @@ using VRC.SDK3.Avatars.ScriptableObjects;
namespace nadena.dev.modular_avatar.core
{
[AddComponentMenu("Modular Avatar/MA Menu Group")]
public class ModularAvatarMenuGroup : MenuSourceComponent
{
private bool recursing = false;

View File

@ -1,5 +1,6 @@
using System.Collections.Generic;
using nadena.dev.modular_avatar.core.menu;
using UnityEngine;
using VRC.SDK3.Avatars.ScriptableObjects;
using VRC.SDKBase;
@ -15,6 +16,7 @@ namespace nadena.dev.modular_avatar.core
///
/// We can also end up with a loop between install targets; in this case, we break the loop at an arbitrary point.
/// </summary>
[AddComponentMenu("Modular Avatar/MA Menu Install Target")]
internal class ModularAvatarMenuInstallTarget : MenuSourceComponent
{
public ModularAvatarMenuInstaller installer;