mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 00:52:58 +02:00
let's try this??
This commit is contained in:
parent
3e0c50e077
commit
16341312fa
2 changed files with 6 additions and 6 deletions
|
@ -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) {
|
||||
|
|
|
@ -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",
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue