Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 359 Bytes

File metadata and controls

12 lines (9 loc) · 359 Bytes

2021-08-17_10:50:33

Console variables

IConsoleVariable* Variable = IConsoleManager::Get().FindConsoleVariable(
    TEXT("MyWariable"));
Variable->Set(Value, Flags); // There are a bunch of overloads. Not sure what Flags is.
Variable->SetWithCurrentPriority(Value);

Variable->SetOnChangedCallback(MyCallback); // Show how to declare MyCallback.