Hello, I am just building a test with Unigine Syncker. Now I want to configure a CAVE environment. The documentation says that a mesh needs to specified, but did not show in which coordinate system it has to be configured. I got a configuration working where the positive Z-Axis of the Mesh shows to the left, the positive Y-Axis up and the positive X-Axis towards me, but I am not sure if this is right. I also run into the problem that the projection is not calculated correctly on the slave (see attachement). If I set the aspect ratio to 1:1 it works but not for 1920:1080. Here is the code example for the mesh:
int slave_0=mesh.addSurface("slave_0");
//Z-Positive left , Y-Positive up, X-Positive towards
mesh.addVertex(vec3(-1.f, -0.108f, 2 * +0.192f), slave_0); //bottom-left corner
mesh.addVertex(vec3(-1.f, -0.108f, 0), slave_0); //bottom-right corner
mesh.addVertex(vec3(-1.f, +0.108f, 2 * +0.192f), slave_0); //top-left corner
mesh.addIndex(0, slave_0);
mesh.addIndex(1, slave_0);
mesh.addIndex(2, slave_0);
mesh.save("slaves.mesh");
May someone know what to do exactly?