Browse Source

Merge pull request #68806 from MewPurPur/printraw-warn-better-in-docs

Make it clearer that printraw only prints to terminal
Rémi Verschelde 2 years ago
parent
commit
5e2bb98eee
1 changed files with 2 additions and 3 deletions
  1. 2 3
      doc/classes/@GlobalScope.xml

+ 2 - 3
doc/classes/@GlobalScope.xml

@@ -794,14 +794,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">