We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't Load a scene through SceneManager when I use the Async Parse Method, like SingUpAsync().
This is the function that I'm trying to execute when I register an user:
public void Register(string Username ,string Email, string Password){ var user = new ParseUser() { Username = Username, Password = Password, Email = Email }; user.SignUpAsync().ContinueWith(t => { if (t.IsFaulted || t.IsCanceled) { Debug.Log("We weren't able to register you, try again!"); } else { Debug.Log("Account created!"); SceneManager.LoadScene("Login"); //registered = true; } }); }
The scene doesn't load, but the Debug.Log("Account created!") appears on console.
I expect the scene Login appears after I received the response of SignUpAsync method.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
New Issue Checklist
Issue Description
I can't Load a scene through SceneManager when I use the Async Parse Method, like SingUpAsync().
Steps to reproduce
This is the function that I'm trying to execute when I register an user:
Actual Outcome
The scene doesn't load, but the Debug.Log("Account created!") appears on console.
Expected Outcome
I expect the scene Login appears after I received the response of SignUpAsync method.
Environment
Logs
The text was updated successfully, but these errors were encountered: