Setting priorities
[Processor(100)]
public static string CheatCodeProcessor(string input) (...)Last updated
As multiple processors can operate concurrently, unexpected results can occur if we do not specify the order at which they are executed. To designate the priority of a processor method, assign it a value to the attribute. Lower values indicate higher priority and are executed first.
[Processor(100)]
public static string CheatCodeProcessor(string input) (...)Last updated