Class Debug
Description
This class provides wrapper for common debugging functions. It helps finding bugs by allowing direct manipulation of the debug console.Debug:printf("The result of 1 + 1 = %d", 1 + 1);
Members
Debug:clear
- in void
- out void
Debug:clear();
THIS FUNCTION IS UNSTABLE.
Debug:hide
- in void
- out void
example:
Debug:hide();
Debug:printf
- in string fmt
- out string
Debug:printf("1 + 1 = %d", 2);
Debug:show
- in void
- out void
Debug:show();