Make it clearer that printraw only prints to terminal
This commit is contained in:
parent
89a33d28f0
commit
a18afb9a56
1 changed files with 2 additions and 3 deletions
|
@ -783,14 +783,13 @@
|
||||||
</method>
|
</method>
|
||||||
<method name="printraw" qualifiers="vararg">
|
<method name="printraw" qualifiers="vararg">
|
||||||
<description>
|
<description>
|
||||||
Prints one or more arguments to strings in the best way possible to console. Unlike [method print], no newline is automatically added at the end.
|
Prints one or more arguments to strings in the best way possible to the OS terminal. Unlike [method print], no newline is automatically added at the end.
|
||||||
[codeblock]
|
[codeblock]
|
||||||
printraw("A")
|
printraw("A")
|
||||||
printraw("B")
|
printraw("B")
|
||||||
printraw("C")
|
printraw("C")
|
||||||
# Prints ABC
|
# Prints ABC to terminal
|
||||||
[/codeblock]
|
[/codeblock]
|
||||||
[b]Note:[/b] Due to limitations with Godot's built-in console, this only prints to the terminal. If you need to print in the editor, use another method, such as [method print].
|
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="prints" qualifiers="vararg">
|
<method name="prints" qualifiers="vararg">
|
||||||
|
|
Loading…
Reference in a new issue