compile error

I wonder if anyone has come across this problem!

I’m compiling a very basic script of my own. so far no problem.
I make an educated guess that the scripts that come with Unity are all debugged and so on.

But the compiler crashes with an error in the ThirdPersonController.js script at line 193.
The error flags the bitwise operator | won’t shortcut. Did I mean ||.

I have made no changes to this script, so why is this happening!

It’s just a warning, not a crash or an error. You can do what the warning suggests and replace | with ||, but it will still function regardless.

–Eric