IR
IreshSampath/unity-assets-easy-ui-console
EasyUIConsole is a lightweight in-game console for real-time log display in Unity. It provides a clean, customizable logs.
π₯οΈ EasyUIConsole for Unity
π Overview
EasyUIConsole is a lightweight in-game console for real-time log display in Unity.
It provides a clean, customizable on-screen console that shows:
π¨ UI Behavior - Log Type Color Style
- β
Logs
$${\color{white}(White)}$$ - β
Highlights
$${\color{green}(Green)}$$ - β
Warnings
$${\color{yellow}(Yellow)}$$ - β
Errors
$${\color{red}(Red)}$$
Perfect for runtime debugging, mobile builds, playtesting, or live demos where Unityβs built-in Console is not accessible.
π¦ Installation
Install via Unity Package Manager (Git URL)
- Open Unity β Window β Package Manager
- Click + β Add package from Git URL
- Paste the following:
https://github.com/IreshSampath/unity-assets-easy-ui-console.git - Click Install
π§° Quick Start
β Step 1 β Setup the EasyUIConsole Prefab
- Go to Package Manager β EasyUIConsole β Samples
- Click Import β EasyUIConsole Sample
- Drag the EasyUIConsole prefab into your scene
β Step 2 β Access the EasyUIConsole API
β Console Control
using GAG.EasyUIConsole;
EasyUIC.OpenConsole();π Opens the console panel using internal events.
β Direct Log Methods
using GAG.EasyUIConsole;
EasyUIC.Log("Sample Log");
EasyUIC.Highlight("Sample Highlight");
EasyUIC.Warning("Sample Warning");
EasyUIC.Error("Sample Error");β Unified Print Method (Recommended for Dynamic Systems)
using GAG.EasyUIConsole;
EasyUIC.Print("Sample Log Print Message", EasyUIConsoleType.Log);
EasyUIC.Print("Sample Highlight Print Message", EasyUIConsoleType.Highlight);
EasyUIC.Print("Sample Warning Print Message", EasyUIConsoleType.Warning);
EasyUIC.Print("Sample Error Print Message", EasyUIConsoleType.Error);π Automatically raises internal events β no direct reference to the EasyUIConsole core is required.
π License
IT License β Free for commercial and personal use.
π Thank You
Thanks for using EasyUIConsole!
- Feel free to contribute
β Star the repo
π Report issues
π Suggest improvements
π€ Author
Iresh Sampath π LinkedIn Profile

