let's try this??

This commit is contained in:
HifiExperiments 2023-12-06 15:59:36 -08:00
parent 3e0c50e077
commit 16341312fa
2 changed files with 6 additions and 6 deletions

View file

@ -113,7 +113,7 @@ void GLBackend::TransformStageState::preUpdate(size_t commandIndex, const Stereo
Transform result;
glm::mat4 correction = _correction.correctionInverse;
if (_mirrorViewCorrection) {
correction = glm::scale(glm::mat4(), glm::vec3(-1.0f, 1.0f, 1.0f)) * correction;
correction = correction * glm::scale(glm::mat4(), glm::vec3(-1.0f, 1.0f, 1.0f));
}
_view.mult(result, _view, correction);
if (_skybox) {

View file

@ -127,11 +127,6 @@ const GROUPS = [
},
propertyID: "billboardMode",
},
{
label: "Render With Zones",
type: "multipleZonesSelection",
propertyID: "renderWithZones",
},
{
label: "Mirror Mode",
type: "dropdown",
@ -147,6 +142,11 @@ const GROUPS = [
type: "string",
propertyID: "portalExitID",
showPropertyRule: { "mirrorMode": "portal" },
},
{
label: "Render With Zones",
type: "multipleZonesSelection",
propertyID: "renderWithZones",
}
]
},