It appears that System.Math.Round does not work on the iPad! I need to convert some floats to int. Is there another way to do this in Unity Script?
Not sure whats wrong with casting. On js, though, I believe you must use the `as` syntax:
var myInt : int = myFloat as int;
Never mind. System.Math does work. There was some related code that worked fine on the Mac but not the iPad. I blamed the wrong line!