diff --git a/docs/effects/ascii.mdx b/docs/effects/ascii.mdx index 5f8d4bc..e338190 100644 --- a/docs/effects/ascii.mdx +++ b/docs/effects/ascii.mdx @@ -20,13 +20,17 @@ return ( ) ``` +## Example + +[![ASCII demo](https://pmndrs.github.io/examples/ascii/thumbnail.webp)](https://pmndrs.github.io/examples/ascii) + ## Props -| Name | Type | Default | Description | -| ---------- | ------- | ----------------------- | ------------------------------------------------------------------ | -| font | String | 'arial' | The font family used to draw the character atlas. | -| characters | String | ` .:,'-^=*+?!\|0#X%WM@` | The characters to sample from, ordered from "empty" to "dense". | -| fontSize | Number | 54 | The font size used to draw the character atlas. | -| cellSize | Number | 16 | The size of each character cell, in pixels. | -| color | ColorRepresentation | '#ffffff' | The color of the characters. | -| invert | Boolean | false | Inverts which characters map to bright vs dark pixels. | +| Name | Type | Default | Description | +| ---------- | ------------------- | ----------------------- | --------------------------------------------------------------- | +| font | String | 'arial' | The font family used to draw the character atlas. | +| characters | String | ` .:,'-^=*+?!\|0#X%WM@` | The characters to sample from, ordered from "empty" to "dense". | +| fontSize | Number | 54 | The font size used to draw the character atlas. | +| cellSize | Number | 16 | The size of each character cell, in pixels. | +| color | ColorRepresentation | '#ffffff' | The color of the characters. | +| invert | Boolean | false | Inverts which characters map to bright vs dark pixels. | diff --git a/docs/passes/n8ao.mdx b/docs/passes/n8ao.mdx index 7008b4b..3e519b8 100644 --- a/docs/passes/n8ao.mdx +++ b/docs/passes/n8ao.mdx @@ -27,6 +27,10 @@ return ( ) ``` +## Example + +[![N8AO demo](https://pmndrs.github.io/examples/n8ao/thumbnail.webp)](https://pmndrs.github.io/examples/n8ao) + ## Props | Name | Type | Default | Description | @@ -34,7 +38,7 @@ return ( | enabled | Boolean | true | Toggles the pass without unmounting it. | | aoRadius | Number | 5 | The ambient occlusion sampling radius. | | distanceFalloff | Number | 1 | The distance falloff. | -| intensity | Number | 1 | The AO intensity. | +| intensity | Number | 1 | The AO intensity. | | quality | 'performance' \| 'low' \| 'medium' \| 'high' \| 'ultra' | 'performance' | The quality preset. | | aoSamples | Number | 16 | The amount of ambient occlusion samples per frame. | | denoiseSamples | Number | 4 | The amount of denoise samples per frame. |