So I have a 3ds model of an apartment. So I managed to insert the apartment in the app
GVRScene scene = gvrContext.getMainScene();
GVRSceneObject apartment = null;
try {
apartment = gvrContext.loadModel("room.3ds");
} catch ...
I get that, yay it's working
Then now what I am trying to achieve is to be INSIDE that apartment. So what I have done is trying to move the apartment in 3d space.
apartment.getTransform().setPosition(0f,0f,-500f);
Now for sure I did not get into the apartment, but I also had something between me and the apartment (see the curvy black thing)
So question is, how to be INSIDE that apartment?
Bonus question: what are the values that i should be using for x,y and z ? like what range ?