You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's say we have a scene and a GUI switch that enables/disables some postprocessing effects.
The optimal renderer settings depend on whether we use postprocessing or not, for example, an optimal postprocessing workflow requires the following settings among others:
{
antialias: false,
depth: false
}
And to render directly to the screen (without postprocessing), we need these values:
{
antialias: true,
depth: true
}
As far as I know, renderer settings cannot be changed on the fly.
What is the best practical solution in this situation?
Is it possible to switch renderer back and forth while keeping the same scene?
If so, how to implement it with react-postprocessing and react-three-fiber?
The text was updated successfully, but these errors were encountered:
Let's say we have a scene and a GUI switch that enables/disables some postprocessing effects.
The optimal renderer settings depend on whether we use postprocessing or not, for example, an optimal postprocessing workflow requires the following settings among others:
And to render directly to the screen (without postprocessing), we need these values:
As far as I know, renderer settings cannot be changed on the fly.
What is the best practical solution in this situation?
Is it possible to switch renderer back and forth while keeping the same scene?
If so, how to implement it with react-postprocessing and react-three-fiber?
The text was updated successfully, but these errors were encountered: