We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the cardinal axes are defined like so:
[MethodImpl(MethodImplOptions.AggressiveInlining)] public static float3 forward() { return new float3(0.0f, 0.0f, 1.0f); }
Please consider converting these into properties, ex:
[MethodImpl(MethodImplOptions.AggressiveInlining)] public static float3 forward => new float3(0.0f, 0.0f, 1.0f);
It is expected within the context of C# that such things should be properties rather than methods.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the cardinal axes are defined like so:
Please consider converting these into properties, ex:
It is expected within the context of C# that such things should be properties rather than methods.
The text was updated successfully, but these errors were encountered: