pw.debug.add(message)
Description :
- Insert a message into the debug window.
Note : this is exactly same with
pw.report()
Parameters :
- pw.debug.add()
- pw.debug.add(message)
- message : string
Note :
pw.debug.add()
will do nothing with debug window, whilepw.debug.add("")
will add a line break ("\n").
Return :
- No return.
Sample code :
pw_debug_add.lua
pw.debug.add("Message from time "..time.."\nHello PixelsWorld!\n")