From 3217bc283cf22d0718a8052fe98cd70d81caaaed Mon Sep 17 00:00:00 2001 From: calsbrook Date: Fri, 9 Aug 2024 21:28:31 -0700 Subject: [PATCH] Clarify usage of CompositorEffect as an abstract base class in the documentation --- doc/classes/CompositorEffect.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/CompositorEffect.xml b/doc/classes/CompositorEffect.xml index b05dc44cf66d..cf3aa9fca47d 100644 --- a/doc/classes/CompositorEffect.xml +++ b/doc/classes/CompositorEffect.xml @@ -4,7 +4,7 @@ This resource allows for creating a custom rendering effect. - This resource defines a custom rendering effect that can be applied to [Viewport]s through the viewports' [Environment]. You can implement a callback that is called during rendering at a given stage of the rendering pipeline and allows you to insert additional passes. Note that this callback happens on the rendering thread. + This resource defines a custom rendering effect that can be applied to [Viewport]s through the viewports' [Environment]. You can implement a callback that is called during rendering at a given stage of the rendering pipeline and allows you to insert additional passes. Note that this callback happens on the rendering thread. CompositorEffect is an abstract base class and must be extended to implement specific rendering logic.