Class DebugActionButton
Button action will be represented as a simple button in the debug menu
Inherited Members [+/-]
. . .
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())
);