mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-01 20:25:07 +08:00
ddbc3b164b
* chore: rearrange package structure to have the package at the root * ci: update CI workflows * ci: fixing workflow bugs * ci: recurse building .zip package * ci: more fixes * ci: add back in the nadena.dev VPM repo * ci: fix tests
31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
using nadena.dev.modular_avatar.core.menu;
|
|
using UnityEngine;
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
|
{
|
|
/// <summary>
|
|
/// The menu install target includes the controls of the target menu installer at the point of reference.
|
|
/// Notably, this can include multiple controls.
|
|
///
|
|
/// One tricky aspect of this feature is that we need to disambiguate when a menu installer also cites a target menu.
|
|
/// Generally, if an installer is targeted by any menu install target (even if - especially if - disabled), we
|
|
/// ignore its install target configuration entirely.
|
|
///
|
|
/// 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;
|
|
|
|
public override void Visit(NodeContext context)
|
|
{
|
|
context.PushNode(installer);
|
|
}
|
|
|
|
public override void ResolveReferences()
|
|
{
|
|
// no-op
|
|
}
|
|
}
|
|
} |