/debug-panel

A debug panel for Unity3D to always show the current value of variables

Primary LanguageC#MIT LicenseMIT

Debug Panel for Unity3D

A debug panel for Unity3D to always show the current value of variables

Debug Panel for Unity3D

Installation

Import the last package on your project and that's all!

Usage

To log a variable awesomeVariable with the label "My Awesome Variable" on the group "My Awesome Group":

DebugPanel.Log("My Awesome Variable", awesomeVariable, "My Awesome Group");

A more concrete example to log the current time in any group:

DebugPanel.Log("Time", Time.time);