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
change:
Vector3 BinaryReader::ReadVector3() { float x = ReadFloat(); float y = ReadFloat(); float z = ReadFloat(); return Vector3(x, y, z); }
to:
Vector3 BinaryReader::ReadVector3() { vector3 val; mStream->read(reinterpret_cast<char*>(&val),12); return val; }
*vector3 may need to be converted to a struct
The text was updated successfully, but these errors were encountered:
No branches or pull requests
change:
to:
*vector3 may need to be converted to a struct
The text was updated successfully, but these errors were encountered: