Skip to content

An Instant, Simple & Ready to use Unity In-Game Debugger & Console.

Notifications You must be signed in to change notification settings

noodle-eater/Instant-Game-Debugger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Instant Game Debugger

An Instant, Simple & Ready to use Unity In-Game Debugger & Console. We already have some in-game console in unity asset store. But sometimes I find bug that I do not have a time to fix it. And I found my self repeating stacking a UI in Unity to test thirdparty features, like the one in Ads Framework. So this debugger is the extension version of the UI I stacked in the Ads Framework. Beside it, I just want to see the log from my game, so if the in-game console I get from asset store not working, I do not want to spend my time fixing it. So I decide to make this fun little thing. And the main reason is of course because I love doing this. By the way, Thank you for :) take a look or try this tiny debugger. Feel free to reach me or create an issue if you have any suggestion, feedback or report.

A. Example

1. Code

using UnityEngine;

public class DebugExample : MonoBehaviour
{
    private int counter = 0;
    private string[] foods = new string[] { "Apple", "Orange", "Noodle"};
    
    private void Start() {
        var debug = new GameDebugger();

        debug.Init();
        debug.AddText("In Game Debugger");
        debug.AddText(() => "Counter : " + counter);
        debug.AddButton("Add", () => { counter++; Debug.Log("Counter " + counter); });
        debug.AddDropDown(foods, (index) => Debug.Log("I want to eat " + foods[index]));
        debug.AddConsole();
    }
}

2. Result

example

B. Documentation

1. Init

Initialize the Debugger Canvas and all required config. Make sure to call this first before add any UI.

public void Init()

2. Button

Add a button into the debugger canvas.

public void AddButton(string buttonName, System.Action OnClicked)

3. Text

Add a text into the debugger canvas. You can use this, if you want to inspect a value. The text will be updated each frame.

public void AddText(System.Func<string> GetText)

4. Static Text

Add a text into the debugger canvas. This text will not be updated, so if you want to inspect a value do not use this one.

public void AddText(string text)

5. Separator

Add black straight line to separate UI.

public void AddSeparator()

6. Dropdown

Add a dropdown choice in debug UI.

public void AddDropDown(string[] options, System.Action<int> OnOptionSelected)

7. Console

Add small console window in debugger.

public void AddConsole()

8. Additional

All the debugger UI & console here I usually used for testing thirdparty features in Android in potrait mode. So, all available UI here is fit in potrait mode. You can change it from the prefab directly, e.g if you want to use it in landscape mode, just open the Debug Canvas prefabs. Change the Reference Resolution in Canvas Scaller.

C. Next Features

  • Drop Down
  • Show Console on Error
  • Debugger Config
  • Potrait & Landscape UI Mode
  • Copy log to clipboard