You are viewing a potentially older version of this package.
View all versions.
InGameLogger
A in-game log viewer that lets you view your log content more quickly.
| Date uploaded | 2 years ago |
| Version | 0.0.1 |
| Download link | Abevol-InGameLogger-0.0.1.zip |
| Downloads | 275 |
| Dependency string | Abevol-InGameLogger-0.0.1 |
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,
}
CHANGELOG
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased
0.0.1 - 2024-07-05
Added
- First version of the mod!