Skip to content
Snippets Groups Projects
Commit 66834780 authored by joni's avatar joni
Browse files

Don't disable sortObjects in hud controller.

parent 69c5f2b5
No related branches found
No related tags found
No related merge requests found
......@@ -81,10 +81,8 @@ AFRAME.registerComponent("hud-controller", {
const AppModeSystem = sceneEl.systems["app-mode"];
if (pitch > lookCutoff && AppModeSystem.mode !== AppModes.HUD) {
AppModeSystem.setMode(AppModes.HUD);
sceneEl.renderer.sortObjects = true;
} else if (pitch < lookCutoff && AppModeSystem.mode === AppModes.HUD) {
AppModeSystem.setMode(AppModes.DEFAULT);
sceneEl.renderer.sortObjects = false;
}
}
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment