12345678910 |
- import { PassPostProcess } from "../../PostProcesses/passPostProcess.js";
- import { AnaglyphPostProcess } from "../../PostProcesses/anaglyphPostProcess.js";
- /**
- * @internal
- */
- export function setStereoscopicAnaglyphRigMode(camera) {
- camera._rigCameras[0]._rigPostProcess = new PassPostProcess(camera.name + "_passthru", 1.0, camera._rigCameras[0]);
- camera._rigCameras[1]._rigPostProcess = new AnaglyphPostProcess(camera.name + "_anaglyph", 1.0, camera._rigCameras);
- }
- //# sourceMappingURL=stereoscopicAnaglyphRigMode.js.map
|