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
Examples
Triggers.Options.BeforeAction = o => { opt.key.KeySpeed = 20; opt.key.TextSpeed = 5; };