summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorVolTer <mew.pur.pur@abv.bg>2022-11-17 23:06:37 +0100
committerVolTer <mew.pur.pur@abv.bg>2022-11-24 18:08:02 +0100
commita18afb9a56d31a63d07c361070a36658d44fa84e (patch)
treea84c2b877e6f9cc2a06a3bf5f897d3b16f0d608e /doc/classes
parent89a33d28f00fec579184fb7193790d40aa09b45b (diff)
Make it clearer that printraw only prints to terminal
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/@GlobalScope.xml5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml
index 09713bce2f..b9965508e2 100644
--- a/doc/classes/@GlobalScope.xml
+++ b/doc/classes/@GlobalScope.xml
@@ -783,14 +783,13 @@
</method>
<method name="printraw" qualifiers="vararg">
<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]
printraw("A")
printraw("B")
printraw("C")
- # Prints ABC
+ # Prints ABC to terminal
[/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>
</method>
<method name="prints" qualifiers="vararg">