Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ export default defineConfig({
{ text: 'Unreal Bloom', link: '/guide/three/unreal-bloom' },
].sort((a, b) => a.text.localeCompare(b.text)),
},
{
text: 'Advanced',
items: [
{ text: 'You might not need this module', link: '/guide/advanced/you-might-not-need-post-processing' },
],
},
],

socialLinks: [
Expand Down
5 changes: 5 additions & 0 deletions docs/guide/advanced/you-might-not-need-post-processing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# You might not need this module

Please note that you can use [Tres.js's attach feature](https://docs.tresjs.org/advanced/attach.html#arrays) instead of this module. It enables you to utilize any effect provided by Three.js, even if there is no corresponding component in post-processing.

We recommend using post-processing because the props of the effects are reactive. The attach feature does not offer prop reactivity. However, if you do not require that advantage, is is a valid option to achieve equal results.