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
These were pretty easy to figure out: camera paths
Will post the details by tomorrow ...
Good night 💃
The text was updated successfully, but these errors were encountered:
Here's the struct:
case PrmPolygonType.Camera: // 0x14 var i1 = reader.ReadInt32BEs(4); var i2 = reader.ReadInt32BEs(4); var i3 = reader.ReadInt32BEs(4); var unk = reader.ReadInt32BE(); var camPolygon = new CamPolygon() { Header = header, Vec1 = new Vec3I32(i1[0], i1[1], i1[2]), Name1 = i1[3], Vec2 = new Vec3I32(i2[0], i2[1], i2[2]), Name2 = i2[3], Vec3 = new Vec3I32(i3[0], i3[1], i3[2]), Name3 = i3[3], Unknown = unk }; return camPolygon;
All vectors are identical, names are most of the time either garbage or non-alphanumeric chars.
Sorry, something went wrong.
No branches or pull requests
These were pretty easy to figure out: camera paths
Will post the details by tomorrow ...
Good night 💃
The text was updated successfully, but these errors were encountered: