Skip to content
Snippets Groups Projects
Commit a1da374b authored by Alexander Rose's avatar Alexander Rose
Browse files

add ModifiersKeys.areNone

parent 3eaf4dac
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,8 @@ Note that since we don't clearly distinguish between a public and private interf ...@@ -6,6 +6,8 @@ Note that since we don't clearly distinguish between a public and private interf
## [Unreleased] ## [Unreleased]
- Remove `camera.far` doubeling workaround
## [v3.33.0] - 2023-04-02 ## [v3.33.0] - 2023-04-02
- Handle resizes of viewer element even when window remains the same size - Handle resizes of viewer element even when window remains the same size
......
...@@ -422,7 +422,7 @@ function updateClip(camera: Camera) { ...@@ -422,7 +422,7 @@ function updateClip(camera: Camera) {
const fogFar = far; const fogFar = far;
camera.near = near; camera.near = near;
camera.far = 2 * far; // avoid precision issues distingushing far objects from background camera.far = far;
camera.fogNear = fogNear; camera.fogNear = fogNear;
camera.fogFar = fogFar; camera.fogFar = fogFar;
} }
\ No newline at end of file
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