You can switch your Inspector into the debug mode

Unity Inspector is extremely useful tool when it comes to tuning up your game objects and components. By default, the inspector is displaying only public and serializable fields, but sometimes you may need to know more about your objects state.

You may want to include Debug.Log() function calls in your code. Usually, this is the fastest way of debugging things. Yet there may be a quicker way!

Consider following script:

using UnityEngine;

public class Counter : MonoBehaviour {
    public bool count = true;
    private float time;

    void Update() {
        if (count) {
            time += Time.deltaTime;
        }
    }
}

This script does nothing more than adding the Time.deltaTime value to a private time field. It’s done under one condition – when the count field is set to true (by default, it is).

When this script is added as a Component to any game object, its inspector looks like this:

counter inspector

Nothing surprising here. We can see the Script property which is a common field for all components that are scripts, and the Count property that is bound to the count field because we have set that as a public field.

Now, if we would like to debug this component, we can use Debug.Log() function as previously mentioned, but it will result in significant amount of log entries in the Console. The better way to do this might be switching the Inspector into the debug mode. Here’s how to do it:

inspector debug mode switch

As you can see, the debug mode has changed the Inspector look dramatically. If any component had custom rendering code, debug mode would disable it.

An interesting fact is that the debug mode is revealing scripts’ private fields as it did with the time field from our script:

counter time field revealed

For security reasons it is not editable, but still it displays the current value set to the time field. Let’s verify that:

debug counter start stop

When you’re finished, you can switch your Inspector back to normal mode by clicking again in the top-right corner and selecting the Normal option:

inspector debug to normal mode

related
AdvancedTips
MonoBehavior calls optimization
What if I told you that Unity can be wasting a lot of CPU performance just by calling your...
1
IntermediateTips
How to customize Unity script templates
When you're creating a new script, Unity editor generates its contents and for C# script...
3
AdvancedGuide
Artificial locomotion in Unity using Machine Learning Part 1
Recently Unity introduced a plugin called ML-Agents, which is meant to integrate Machine Learning...
0
Call The Knights!
We are here for you.
Please contact us with regards to a Unity project below.



The Knights appreciate your decision!
Expect the first news soon!
hire us!