We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3badf8 commit 5ad7f82Copy full SHA for 5ad7f82
README.md
@@ -246,7 +246,7 @@ public class GameController : MonoBehaviour {
246
private static extern void GameOver (string userName, int score);
247
248
public void SomeMethod () {
249
-#if (UNITY_WEBGL == true && UNITY_EDITOR == false)
+#if UNITY_WEBGL == true && UNITY_EDITOR == false
250
GameOver ("Player1", 100);
251
#endif
252
}
@@ -579,7 +579,7 @@ using UnityEngine;
579
580
public class GameController : MonoBehaviour {
581
private void Start () {
582
583
WebGLInput.captureAllKeyboardInput = false;
584
585
0 commit comments