Definition
PrintConsole(string message)
Description
This function displays the message text in the console of Vanda Engine editor.
Parameters
message
Specifies the text to be displayed on the console.
Example
function Init() message = string.format("\nHello World!") PrintConsole(message) end function Update() end
The PrintConsole function In this example displays the message Hello World! in the console of editor.
PrintConsole