Log In  

Cart #yepsboge-1 | 2019-03-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

  1. call _init_debugger() in the init function.
  2. call _draw_debugger() in the _draw function.

  3. to print a message, call the _debugger_print() method and as a parameter pass in a variable you want to print.
    you can also print warnings with _debugger_warning() and errors with _debugger_error()

EX:
...

_debugger_print("Hello World")
_debugger_warning("Hello World")
_debugger_error("Hello World")

...

P#62915 2019-03-20 17:09 ( Edited 2019-03-20 18:40)

Love it, thanks justbake!

P#63075 2019-03-27 22:16

[Please log in to post a comment]