diff options
author | Bastiaan Olij <mux213@gmail.com> | 2023-08-03 22:10:03 +1000 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2024-02-18 21:54:21 +1100 |
commit | 5a98845655900a7884bf5a73c5406318f1106d77 (patch) | |
tree | 38befda91eaef9ccf35fd909486a5ea0f3b09705 /doc/classes/Compositor.xml | |
parent | 5f05e2b9b1a3fedcdd7ecb2ab976a2687fd6f19a (diff) | |
download | redot-engine-5a98845655900a7884bf5a73c5406318f1106d77.tar.gz |
Implement hooks into renderer
Diffstat (limited to 'doc/classes/Compositor.xml')
-rw-r--r-- | doc/classes/Compositor.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/classes/Compositor.xml b/doc/classes/Compositor.xml new file mode 100644 index 0000000000..51336322a3 --- /dev/null +++ b/doc/classes/Compositor.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class name="Compositor" inherits="Resource" experimental="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> + <brief_description> + The compositor resource holds the configuration with which rendering of a viewport can be customised. + </brief_description> + <description> + The compositor resource holds the configuration with which rendering of a viewport can be customised. + [b]Note:[/b] This functionality is still experimental as more customisation of the rendering pipeline will be added in the near future. + </description> + <tutorials> + </tutorials> + <members> + <member name="compositor_effects" type="CompositorEffect[]" setter="set_compositor_effects" getter="get_compositor_effects" default="[]"> + The custom [CompositorEffect]s that are applied during rendering of viewports using this compositor. + </member> + </members> +</class> |