Skip to content

Console

Console

Prints messages to the in-editor console. All methods are static — call them directly on the class, e.g. Console.Print("hello").

Print staticmethod

Print(value: Any) -> None

Log an informational message to the console. value is converted with str().

PrintError staticmethod

PrintError(value: Any) -> None

Log an error message to the console. value is converted with str().

PrintWarning staticmethod

PrintWarning(value: Any) -> None

Log a warning message to the console. value is converted with str().