Skip to content

Commit 51acad5

Browse files
Tinooooalvarosabu
andauthored
docs: 195 have a section mentioning the attach feature in the docs (#203)
* feat(docs): add 'Advanced' section with custom guide link * changed link text --------- Co-authored-by: Tino Koch <> Co-authored-by: Alvaro Saburido <[email protected]>
1 parent aaa1626 commit 51acad5

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

docs/.vitepress/config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ export default defineConfig({
9090
{ text: 'Unreal Bloom', link: '/guide/three/unreal-bloom' },
9191
].sort((a, b) => a.text.localeCompare(b.text)),
9292
},
93+
{
94+
text: 'Advanced',
95+
items: [
96+
{ text: 'You might not need this module', link: '/guide/advanced/you-might-not-need-post-processing' },
97+
],
98+
},
9399
],
94100

95101
socialLinks: [
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# You might not need this module
2+
3+
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.
4+
5+
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.

0 commit comments

Comments
 (0)