add demos to README.md

This commit is contained in:
Abe Pazos
2025-10-14 13:30:41 +00:00
parent 823761f7d7
commit a6364c5111
2 changed files with 38 additions and 11 deletions

View File

@@ -239,7 +239,17 @@ fun main() = application {
## Demos
### DemoAside01
Demonstrates how to reuse a layer in the Compositor by using `aside { }`.
The `aside` block can make use of `draw`, `mask` and `post`. In this demo
only the latter is used to apply a full-window animated `Checkers` effect.
The `aside` is not displayed by default.
Next, a white, centered circle is drawn.
Finally, a `HashBlurDynamic` post-processing effect is applied. The dynamic
version of the HashBlur effect multiplies its `radius` argument by the red component
of the provided texture (containing the animated checkers in this case).
![DemoAside01Kt](https://raw.githubusercontent.com/openrndr/orx/media/orx-compositor/images/DemoAside01Kt.png)