Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_TracyPlugin.c
Go to the documentation of this file.
2 name: "Run Tracy Profiler",
3 description: "Run Tracy Profiler",
4 wbModules: { "ResourceManager", "ScriptEditor", "WorldEditor" },
5 awesomeFontCode: 0x0054)]
6class SCR_TracyPlugin : WorkbenchPlugin
7{
8 //------------------------------------------------------------------------------------------------
9 override void Run()
10 {
11 string binDir;
12 Workbench.GetCwd(binDir);
13 if (!Workbench.RunProcess(binDir + "/tracy/tracy-profiler.exe"))
14 Print("SCR_TracyPlugin -> Tracy failed to start!", LogLevel.ERROR);
15 }
16}
GenerateFlowMaps WorkbenchPlugin WorkbenchPluginAttribute("Regenerate river flow-maps", "Generate and save/overwrite river flow-maps", "", "", {"WorldEditor"}, "", 0xf773)
Definition FlowmapTool.c:59
override void Run()
proto void Print(void var, LogLevel level=LogLevel.NORMAL)
Prints content of variable to console/log.
LogLevel
Enum with severity of the logging message.
Definition LogLevel.c:14