Skip to content

Commit 6cc9490

Browse files
author
Tino Koch
committed
feat(docs): add 'Advanced' section with custom guide link
1 parent 70dbb3b commit 6cc9490

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
@@ -86,6 +86,12 @@ export default defineConfig({
8686
{ text: 'Unreal Bloom', link: '/guide/three/unreal-bloom' },
8787
].sort((a, b) => a.text.localeCompare(b.text)),
8888
},
89+
{
90+
text: 'Advanced',
91+
items: [
92+
{ text: 'Custom', link: '/guide/advanced/you-might-not-need-post-processing' },
93+
],
94+
},
8995
],
9096

9197
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)