diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-11-07 13:21:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-07 13:21:09 +0100 |
commit | 91518defa550568faf97ac063f4ae85a169b876a (patch) | |
tree | 7c9216534e3ec5fe8436ba94178340690a58fecb /modules | |
parent | b964e911b67769257959b7a592faf55b90c44ea9 (diff) | |
parent | c4e46b880089409689ca9de07df8cadce1fd52e5 (diff) |
Merge pull request #33257 from aaronfranke/printraw
Document behavior of GDScript printraw
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/doc_classes/@GDScript.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/doc_classes/@GDScript.xml b/modules/gdscript/doc_classes/@GDScript.xml index f96c4f28c8..840971dcf8 100644 --- a/modules/gdscript/doc_classes/@GDScript.xml +++ b/modules/gdscript/doc_classes/@GDScript.xml @@ -839,6 +839,7 @@ printraw("B") # Prints AB [/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"> |