EasyUIConsole is a lightweight in-game console for real-time log display in Unity.
It provides a clean, customizable on-screen console that shows:
- ✅ 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.
- 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
- Go to Package Manager → EasyUIConsole → Samples
- Click Import → EasyUIConsole Sample
- Drag the EasyUIConsole prefab into your scene
using GAG.EasyUIConsole;
EasyUIC.OpenConsole();👉 Opens the console panel using internal events.
using GAG.EasyUIConsole;
EasyUIC.Log("Sample Log");
EasyUIC.Highlight("Sample Highlight");
EasyUIC.Warning("Sample Warning");
EasyUIC.Error("Sample Error");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);IT License — Free for commercial and personal use.
Thanks for using EasyUIConsole!
- Feel free to contribute ⭐ Star the repo 🐞 Report issues 🚀 Suggest improvements
Iresh Sampath 🔗 LinkedIn Profile

