Two questions.1)How can I create a password field control on my GUI (In that is will only show a star instead of the actual character.)2)How can I get what a user has typed into a Text Edit.
1) LineEdit has a method to do this ([url=http://docs.godotengine.org/en/latest/classes/class_lineedit.html?highlight=line#class-lineedit-set-secret]set_secret()[/url] Since a password probably doesn't consist of multiple lines this should be the better choice anyway.2) Use [url=http://docs.godotengine.org/en/latest/classes/class_textedit.html?highlight=textedit#class-textedit-get-text]TextEdit.get_text()[/url]
Thank you.