OK I have made a simple script to handle changing the input fields content type from password to standard.
While observing the inspector its changing it straight away like its meant too but its not updating the text field on screen. Not until its clicked on.
public void ShowPassword1() {
if (newPassword.contentType == InputField.ContentType.Standard) {
newPassword.contentType = InputField.ContentType.Password;
}
else if (newPassword.contentType == InputField.ContentType.Password) {
newPassword.contentType = InputField.ContentType.Standard;
Is there anything I can do to get this text field to update right away or am I out of luck?
Thanks~