Class Debug

There is 3 different debugs

  • log

  • warning

  • error

log

log is used for print a message in the console. It is really use what we call in programming world : debug.

warning

warning is used to print a problem in your game. This problem is not dangerous for what you want to do, but can be awkward.

error

error is THE debug that you can be scared to see. Error means that something not work and that can be dangerous for your game fonctionnality or for the engine.

Last updated