I have 2 models of different heights and I thought this would place
both objects at 90 (bottom left going up)

The models display at different heights and at different Z positions?
I exported the models from Blender and I wonder did Blender muck up
the axis and I wasnt aware of it? IT display right way up.

        model = new House3(1);
                        model.material = modelMaterial;
                        model.z =300;
                        model.y=90;
                        model.x=200;
                        view.scene.addChild(model);

                        model3 = new House2( 1);
                        model3.material = modelMaterial2;
                        model3.z =300;
                        model3.y=90;
                        model3.x=-300;
                        view.scene.addChild(model3);

Reply via email to