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
Replace this line with your Godot version
how to go back on line in the print useing somthing simmlaer to \n*
Ask your question here! Try to give as many details as possible
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
thanks for it real help