InGameLogger
A in-game log viewer that lets you view your log content more quickly.
Last updated | 4 months ago |
Total downloads | 90 |
Total rating | 0 |
Categories | Tools |
Dependency string | Abevol-InGameLogger-0.0.1 |
Dependants | 0 other packages depend on this package |
This mod requires the following mods to function
SGG_Modding-ENVY
A plugin to allow ReturnOfModding plugins greater control of their environment.
Preferred version: 1.1.0README
Mod name
A in-game log viewer that lets you view your log content more quickly.
Usage
---@module 'Abevol-InGameLogger'
InGameLogger = mods["Abevol-InGameLogger"]
local function on_ready()
logger = InGameLogger.New({Name = _ENV._PLUGIN.guid})
logger:Add("Add")
logger:AddColored(0xF42069FF, "AddColored")
logger:Waring("Waring")
logger:Error("Error")
logger:Info("Info")
logger:Debug("Debug")
end
Configuration
local DefaultInGameLoggerArgs = {
Name = _ENV._PLUGIN.guid,
ShowLogger = true,
ToggleKeyBind = "Ctrl L",
MaxLines = 8,
DisplayDuration = -1,
NoTitleBar = true,
WindowBgAlpha = 0.3,
XPos = 1412,
YPos = 882,
Width = 382,
Height = 192,
}