Show / Hide Table of Contents

Class DebugActionButton

Button action will be represented as a simple button in the debug menu

Inheritance
System.Object
BaseDebugAction
FluentAction<DebugActionButton>
DebugActionButton
Inherited Members [+/-]
. . .
FluentAction<DebugActionButton>.WithId(String)
FluentAction<DebugActionButton>.WithAction(Action)
FluentAction<DebugActionButton>.WithName(String)
FluentAction<DebugActionButton>.WithDescription(String)
FluentAction<DebugActionButton>.WithGroup(String)
FluentAction<DebugActionButton>.WithShortcutKey(String)
FluentAction<DebugActionButton>.WithActionColor(Color)
FluentAction<DebugActionButton>.WithClosePanelAfterTrigger(Boolean)
BaseDebugAction.group
BaseDebugAction.name
BaseDebugAction.id
BaseDebugAction.description
BaseDebugAction.shortcutKey
BaseDebugAction.closePanelAfterTrigger
BaseDebugAction.actionColor
BaseDebugAction.unityAction
BaseDebugAction.action
BaseDebugAction.actionStatus
BaseDebugAction.ResolveAction()
BaseDebugAction.CanDisplayAction()
BaseDebugAction.GetDescription()
BaseDebugAction.Setup()
Namespace: BennyKok.RuntimeDebug.Actions
Assembly: com.bennykok.runtime-debug-action.dll
Syntax
[Serializable]
public class DebugActionButton : FluentAction<DebugActionButton>
Examples
RuntimeDebugSystem.RegisterActions(
    DebugActionBuilder.Button()
        .WithName("Quit")
        .WithAction(() => Application.Quit())
);
In This Article
👆 RuntimeDebugAction by ❤️ BennyKok