Skip to content
New issue

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

OKDemoScene.cs has 2 typos won't compile #1

Open
tomoprime opened this issue Aug 12, 2013 · 0 comments
Open

OKDemoScene.cs has 2 typos won't compile #1

tomoprime opened this issue Aug 12, 2013 · 0 comments

Comments

@tomoprime
Copy link

OKDemoScene.cs
score.submitScore((success, errorMessage) => {
if (success) {
Debug.Log("Score submitted successfully!");
} else {
Debug.Log("Score did not submit. Error: " + errorMessage);
}

should be like?
score.SubmitScore((success, errorMessage) => {
if (success !=null) {
Debug.Log("Score submitted successfully!");
} else {
Debug.Log("Score did not submit. Error: " + errorMessage);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant