Closed beersheba closed 6 years ago
Error in code on page 3 - Set up the SceneController else if (Session.Status.IsError)
else if (Session.Status.IsError)
Cannot convert method group IsError' to non-delegate typebool'. Consider using parentheses to invoke the method (CS0428) (Assembly-CSharp)
IsError' to non-delegate type
Must be else if (Session.Status.IsError())
else if (Session.Status.IsError())
I get the same error. Using the suggestion from the OP's post fixes this issue.
Hi,
Thanks for trying out the codelab. Yes, there's minor error in the webpage, we missed the "()". I've fixed that.
Cheers
Error in code on page 3 - Set up the SceneController
else if (Session.Status.IsError)
Must be
else if (Session.Status.IsError())