|
static void | Clear () |
|
static void | LogToFilter (string inLog, string inFilterName) |
|
static void | LogAsType (string inLog, string inTypeName) |
|
static void | Watch (string inName, string inValue) |
|
static void | Search (string inText) |
|
Definition at line 3 of file ConsoleProDebug.cs.
◆ Clear()
static void ConsoleProDebug.Clear |
( |
| ) |
|
|
inlinestatic |
◆ LogAsType()
static void ConsoleProDebug.LogAsType |
( |
string |
inLog, |
|
|
string |
inTypeName |
|
) |
| |
|
inlinestatic |
Definition at line 14 of file ConsoleProDebug.cs.
15 {
16 Debug.Log(inLog +
"\nCPAPI:{\"cmd\":\"LogType\" \"name\":\"" + inTypeName +
"\"}");
17 }
References Debug.
◆ LogToFilter()
static void ConsoleProDebug.LogToFilter |
( |
string |
inLog, |
|
|
string |
inFilterName |
|
) |
| |
|
inlinestatic |
Definition at line 9 of file ConsoleProDebug.cs.
10 {
11 Debug.Log(inLog +
"\nCPAPI:{\"cmd\":\"Filter\" \"name\":\"" + inFilterName +
"\"}");
12 }
References Debug.
◆ Search()
static void ConsoleProDebug.Search |
( |
string |
inText | ) |
|
|
inlinestatic |
Definition at line 24 of file ConsoleProDebug.cs.
25 {
26 Debug.Log(
"\nCPAPI:{\"cmd\":\"Search\" \"text\":\"" + inText +
"\"}");
27 }
References Debug.
◆ Watch()
static void ConsoleProDebug.Watch |
( |
string |
inName, |
|
|
string |
inValue |
|
) |
| |
|
inlinestatic |
Definition at line 19 of file ConsoleProDebug.cs.
20 {
21 Debug.Log(inName +
" : " + inValue +
"\nCPAPI:{\"cmd\":\"Watch\" \"name\":\"" + inName +
"\"}");
22 }
References Debug.
The documentation for this class was generated from the following file: