diff options
author | Jiří Švejda <jirisvd@gmail.com> | 2024-09-19 22:26:23 +0200 |
---|---|---|
committer | Jiří Švejda <jirisvd@gmail.com> | 2024-09-19 22:26:23 +0200 |
commit | c4bea28e1734e2d13fa9a7e01d48059c65e22113 (patch) | |
tree | 43803b1d47b45e45cd14bd62fb5a2e5b7af3bf16 | |
parent | 0a4aedb36065f66fc7e99cb2e6de3e55242f9dfb (diff) | |
download | redot-engine-c4bea28e1734e2d13fa9a7e01d48059c65e22113.tar.gz |
Fix typo in CompositorEffect documentation
-rw-r--r-- | doc/classes/CompositorEffect.xml | 2 | ||||
-rw-r--r-- | doc/classes/RenderingServer.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/CompositorEffect.xml b/doc/classes/CompositorEffect.xml index 9ac54edb11..8961e10f91 100644 --- a/doc/classes/CompositorEffect.xml +++ b/doc/classes/CompositorEffect.xml @@ -87,7 +87,7 @@ The callback is called before our transparent rendering pass, but after our sky is rendered and we've created our back buffers. </constant> <constant name="EFFECT_CALLBACK_TYPE_POST_TRANSPARENT" value="4" enum="EffectCallbackType"> - The callback is called after our transparent rendering pass, but before any build in post effects and output to our render target. + The callback is called after our transparent rendering pass, but before any built-in post-processing effects and output to our render target. </constant> <constant name="EFFECT_CALLBACK_TYPE_MAX" value="5" enum="EffectCallbackType"> Represents the size of the [enum EffectCallbackType] enum. diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml index 3658dafea6..c62770cf1f 100644 --- a/doc/classes/RenderingServer.xml +++ b/doc/classes/RenderingServer.xml @@ -5148,7 +5148,7 @@ The callback is called before our transparent rendering pass, but after our sky is rendered and we've created our back buffers. </constant> <constant name="COMPOSITOR_EFFECT_CALLBACK_TYPE_POST_TRANSPARENT" value="4" enum="CompositorEffectCallbackType"> - The callback is called after our transparent rendering pass, but before any build in post effects and output to our render target. + The callback is called after our transparent rendering pass, but before any built-in post-processing effects and output to our render target. </constant> <constant name="COMPOSITOR_EFFECT_CALLBACK_TYPE_ANY" value="-1" enum="CompositorEffectCallbackType"> </constant> |