How to go back on line in the print useing somthing simmlaer to \n

Godot Version

Replace this line with your Godot version

how to go back on line in the print useing somthing simmlaer to \n*

Question

Ask your question here! Try to give as many details as possible

1 Like

From the Godot Docs:

Escape sequence
Expands to
\n
Newline (line feed)
\t
Horizontal tab character
\r
Carriage return
\a
Alert (beep/bell)
\b
Backspace
\f
Formfeed page break
\v
Vertical tab character
\"
Double quote
\'
Single quote
\\
Backslash
\uXXXX
UTF-16 Unicode codepoint XXXX (hexadecimal, case-insensitive)
\UXXXXXX
UTF-32 Unicode codepoint XXXXXX (hexadecimal, case-insensitive)

Maybe \b ‘Backspace’ if that’s what you mean…

Ryn

2 Likes

thanks for it real help

1 Like