Method | Description | |
---|---|---|
clear ( ) : void |
Clears the console buffer
|
|
print ( float message ) : void |
Prints a message to the VirtualVEX console. Useful for debugging purposes when making new robots (since the Unity print function is unavailable outside the Unity editor) or for implementing new console commands.
|
|
print ( int message ) : void |
Prints a message to the VirtualVEX console. Useful for debugging purposes when making new robots (since the Unity print function is unavailable outside the Unity editor) or for implementing new console commands.
|
|
print ( string message ) : void |
Prints a message to the VirtualVEX console. Useful for debugging purposes when making new robots (since the Unity print function is unavailable outside the Unity editor) or for implementing new console commands.
|
|
println ( ) : void |
Prints a newline to the VirtualVEX console. Equivalent to calling
|
|
println ( float message ) : void |
Prints a message to the VirtualVEX console immediately followed by a newline. Equivalent to calling
|
|
println ( int message ) : void |
Prints a message to the VirtualVEX console immediately followed by a newline. Equivalent to calling
|
|
println ( string message ) : void |
Prints a message to the VirtualVEX console immediately followed by a newline. Equivalent to calling
|
|
setConsoleParent ( Field f ) : void |
Set the parent of the current scene's console (if it exists). Consoles are not objects due to Unity's method-based GUI system, and therefore the parent will not have a vvConsole member. Rather, a valid parent must implement a command table and GUI function for the console window. It must then call this method to attach its member output stream to the console.
|
public static print ( float message ) : void | ||
message | float | The message to be printed |
return | void |
public static print ( int message ) : void | ||
message | int | The message to be printed |
return | void |
public static print ( string message ) : void | ||
message | string | The message to be printed |
return | void |
public static println ( float message ) : void | ||
message | float | The message to be printed |
return | void |
public static println ( int message ) : void | ||
message | int | The message to be printed |
return | void |
public static println ( string message ) : void | ||
message | string | The message to be printed |
return | void |
public static setConsoleParent ( Field f ) : void | ||
f | Field | The parent object |
return | void |