Ignition / Debugging

Namespace Playniax.Ignition

Script can be found in Assets/Playniax/Framework/Ignition/Framework/Core/Scripts/Debugging.cs

Class Debugging

Description

A collection of debugging functions.

Public MethodsDescription
static void MeasureTime()Measures time in milliseconds. MeasureTime() should always be called in pairs. The first time MeasureTime() is called, it stores the current time, and the second time MeasureTime() is called, it shows the difference in the console. Typically, MeasureTime() is called before and after a function to measure the execution time in milliseconds.