As I was beginning to construct my Math class in C#, I received an error message that an ambiguous reference with my Math class and that of the System.Math. Are there anymore math classes that are available to the Game ENgine that I am definitely not aware about.
It would be nice to know if a comprehensive math class does exist for the game engine…
Unity uses .NET (well, Mono technically), and therefore you have access to .NET classes, such as System.Math. You can use the complete path to differentiate between System.Math and your own Math class, but in the end it’s probably easier just to use a different name other than Math.