Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.

Commit 7289c15

Browse files
authored
fix: update import paths for post-processing components in documentation (#206)
1 parent 926384b commit 7289c15

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/guide/pmndrs/ascii.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The `<ASCIIPmndrs>` component is straightforward to integrate and offers a varie
1919

2020
```vue{2,12-17,29-33}
2121
<script setup lang="ts">
22-
import { EffectComposerPmndrs, ASCIIPmndrs } from '@tresjs/post-processing/pmndrs'
22+
import { EffectComposerPmndrs, ASCIIPmndrs } from '@tresjs/post-processing'
2323
2424
const gl = {
2525
toneMapping: NoToneMapping,

docs/guide/pmndrs/brightness-contrast.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The `<BrightnessContrastPmndrs>` component is easy to use and provides customiza
1919

2020
```vue{2,8-12,21-25}
2121
<script setup lang="ts">
22-
import { EffectComposerPmndrs, BrightnessContrastPmndrs } from '@tresjs/post-processing/pmndrs'
22+
import { EffectComposerPmndrs, BrightnessContrastPmndrs } from '@tresjs/post-processing'
2323
2424
const gl = {
2525
toneMapping: NoToneMapping,

docs/guide/pmndrs/color-depth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The `<ColorDepthPmndrs>` component is easy to use and provides customizable opti
1919

2020
```vue{2,8-12,21-25}
2121
<script setup lang="ts">
22-
import { EffectComposerPmndrs, ColorDepthPmndrs } from '@tresjs/post-processing/pmndrs'
22+
import { EffectComposerPmndrs, ColorDepthPmndrs } from '@tresjs/post-processing'
2323
2424
const gl = {
2525
toneMapping: NoToneMapping,

docs/guide/pmndrs/fxaa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ When using the `<EffectComposerPmndrs>` pipeline, enabling native antialiasing w
2323

2424
```vue{2,12-14,23-27}
2525
<script setup lang="ts">
26-
import { EffectComposerPmndrs, FXAAPmndrs } from '@tresjs/post-processing/pmndrs'
26+
import { EffectComposerPmndrs, FXAAPmndrs } from '@tresjs/post-processing'
2727
2828
const gl = {
2929
toneMapping: NoToneMapping,

docs/guide/pmndrs/grid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The `<GridPmndrs>` component is easy to use and provides customizable options to
1919

2020
```vue{2,8-12,21-25}
2121
<script setup lang="ts">
22-
import { EffectComposerPmndrs, GridPmndrs } from '@tresjs/post-processing/pmndrs'
22+
import { EffectComposerPmndrs, GridPmndrs } from '@tresjs/post-processing'
2323
2424
const gl = {
2525
toneMapping: NoToneMapping,

docs/guide/pmndrs/smaa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When using the `<EffectComposerPmndrs>` pipeline, enabling native antialiasing w
2626

2727
```vue{2-3,13-15,24-28}
2828
<script setup lang="ts">
29-
import { EffectComposerPmndrs, SMAAPmndrs } from '@tresjs/post-processing/pmndrs'
29+
import { EffectComposerPmndrs, SMAAPmndrs } from '@tresjs/post-processing'
3030
import type { SMAAPreset } from 'postprocessing'
3131
3232
const gl = {

docs/guide/pmndrs/texture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If you need to adjust properties such as **rotation**, **repeat**, or **other at
2424

2525
```vue{2,16-20,41-45}
2626
<script setup lang="ts">
27-
import { EffectComposerPmndrs, TexturePmndrs } from '@tresjs/post-processing/pmndrs'
27+
import { EffectComposerPmndrs, TexturePmndrs } from '@tresjs/post-processing'
2828
import { TresCanvas, useTexture } from '@tresjs/core'
2929
import { NoToneMapping, RepeatWrapping, SRGBColorSpace } from 'three'
3030
import { BlendFunction, ColorChannel } from 'postprocessing'

0 commit comments

Comments
 (0)