mr2adv 44 Posted August 9, 2023 Report Share Posted August 9, 2023 (edited) Hello all, This tutorial is for: Object translations are read incorrectly from the object definitions. They are currently read as a readUShort when they should be read as a readShort. To fix, go to your ObjectDefinition.java and change the following: } else if (opcode == 70) { translateX = buffer.readUShort(); } else if (opcode == 71) { translateY = buffer.readUShort(); } else if (opcode == 72) { translateZ = buffer.readUShort(); To } else if (opcode == 70) { translateX = buffer.readShort(); } else if (opcode == 71) { translateY = buffer.readShort(); } else if (opcode == 72) { translateZ = buffer.readShort(); Edited August 9, 2023 by mr2adv fix tags Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now