Show / Hide Table of Contents

Property TriggerOptions.BeforeAction


Overload

A function to run before the trigger action. For example, it can set opt options.

public Action<TOBAArgs> BeforeAction { set; }
Property Value
Action<TOBAArgs>

Examples

Triggers.Options.BeforeAction = o => { opt.key.KeySpeed = 20; opt.key.TextSpeed = 5; };