mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-19 12:50:08 +08:00
a300622bb2
* chore: add support for synced/saved settings on menu actions * feat: move action defaults to control group * chore: finish the control group ui updates * docs: update tutorial * docs: update control group documentation * docs/ui: menu install target UI and docs
17 lines
547 B
C#
17 lines
547 B
C#
using UnityEngine;
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
|
{
|
|
/// <summary>
|
|
/// Tag class that marks components that actions can be attached to.
|
|
///
|
|
/// Note that this is public due to C# protection rules, but is not a supported API for editor scripts and may
|
|
/// change in point releases.
|
|
/// </summary>
|
|
[DisallowMultipleComponent]
|
|
public abstract class ActionController : AvatarTagComponent
|
|
{
|
|
internal abstract bool isSyncedProp { get; }
|
|
internal abstract bool isSavedProp { get; }
|
|
}
|
|
} |