XYZ - Printable Version +- Cuberite Forum (https://forum.cuberite.org) +-- Forum: Cuberite (https://forum.cuberite.org/forum-4.html) +--- Forum: Discussion (https://forum.cuberite.org/forum-5.html) +--- Thread: XYZ (/thread-64.html) |
XYZ - Revolucas - 03-04-2011 I feel like I'm going insane...Is the axis in MCserver backwards? This is really messing up some of the testing I've been doing with a plugin I'm working on. Because all the data values are the opposite of what they should be due to either the sun being in the wrong place or a reverse axis. Z positive should move eastward not westward. X positive should move Northward not Southward... I was confused for a long time until I realized this. I was using a diagram to figure out block placement via relative position like this: ------------[1,0,0 ]----------- ---[0,0,-1][0,0,0 ][0,0,1]--- ------------[-1,0,0]---------- But it turns out that is wrong so I had to reverse it: -----------[-1,0,0]------------ ---[0,0,1][0,0,0 ][0,0,-1]--- -----------[1,0,0 ]------------ Strange indeed...Because using the new diagram will align (0,0,1) with the direction of the Sun. CONFUSED! RE: XYZ - FakeTruth - 03-04-2011 Uhm, what? MCServer has the exact same axis system as Minecraft. I can't say which directions X and Z are, but the Y axis points upwards meaning 127 is the top block, and 0 is the bedrock at the bottom of the map. If you're using OnBlockPlace or OnBlockDig for this, you always get the coordinates of the block you aimed at. RE: XYZ - Revolucas - 03-04-2011 (03-04-2011, 10:23 PM)FakeTruth Wrote: Uhm, what? Use F3. Go to singleplayer and walk towards the sun. Z will increase. Go on MCServer walk towards the sun, Z will decrease. The Y axis is fine. RE: XYZ - FakeTruth - 03-04-2011 Nope. If you walk towards the sun while it's setting, Z will increase (both single and MCServer) if you walk towards it while it's rising, Z will decrease (both single and MCServer) Make sure you're not getting confused by negative numbers! -100 to -99 is NOT a decrease but an increase. |