Skip to content

Commit 9406ef7

Browse files
committed
Always have an empty effects pass as a workaround.
1 parent 679d934 commit 9406ef7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/render-composer/src/RenderPipeline.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ export const RenderPipeline = ({ children }: RenderPipelineProps) => {
5050
ignoreBackground
5151
/>
5252

53+
{/* An empty effect pass, because for some reason this is the only way to get both of
54+
the previous passes merged. :( */}
55+
<RC.EffectPass />
56+
5357
{depthPass && colorPass && (
5458
<RenderPipelineContext.Provider
5559
value={{

0 commit comments

Comments
 (0)