Hello, how can i move the ground anchor at position x: 0, z: 0
Here is the playground about my probleme :
https://www.babylonjs-playground.com/#1RKZXB#114
As you can see the position 0, 0 is the middle of the ground mesh, i would like to make it as size/2, size/2 to be sync with my grid system, but when i try with
ground.position.x = map.size/2;
ground.position.z = map.size/2;
ground.updateCoordinateHeights();
it break the getHeightAtCoordinates and the box got a different y as they should.
Thanks for help