-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to enable antialias? #8
Comments
A bit of context about this question: the render was a bit blurry and I was looking for the possible problem. After some research, I've discovered that it was caused by the |
You are right. PixelRatio is missing. There is a setter on the Renderer and this one is not called. I will add the possibility to set it by means of the configuration object. In the meantime you can get the renderer by means of |
I will implement automatic device pixelratio setting. This should solve your problem. The above mentioned problem of a multi monitor setup with different ratios can't be solved with a static pixel ratio. |
automatic pixel ratio adjustment is implemented in v0.16.0. |
I can pass
Partial<WebGLRenderer>
to theThCanvas
but I can't figure out how to toggle the antialias flag. Is it possible in some way? Is there a way to get the renderer instance in a component?The text was updated successfully, but these errors were encountered: