Skip to content

Commit 5ad7f82

Browse files
Updated documentation
1 parent a3badf8 commit 5ad7f82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public class GameController : MonoBehaviour {
246246
private static extern void GameOver (string userName, int score);
247247

248248
public void SomeMethod () {
249-
#if (UNITY_WEBGL == true && UNITY_EDITOR == false)
249+
#if UNITY_WEBGL == true && UNITY_EDITOR == false
250250
GameOver ("Player1", 100);
251251
#endif
252252
}
@@ -579,7 +579,7 @@ using UnityEngine;
579579

580580
public class GameController : MonoBehaviour {
581581
private void Start () {
582-
#if (UNITY_WEBGL == true && UNITY_EDITOR == false)
582+
#if UNITY_WEBGL == true && UNITY_EDITOR == false
583583
WebGLInput.captureAllKeyboardInput = false;
584584
#endif
585585
}

0 commit comments

Comments
 (0)