Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/guide/pmndrs/ascii.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The `<ASCIIPmndrs>` component is straightforward to integrate and offers a varie

```vue{2,12-17,29-33}
<script setup lang="ts">
import { EffectComposerPmndrs, ASCIIPmndrs } from '@tresjs/post-processing/pmndrs'
import { EffectComposerPmndrs, ASCIIPmndrs } from '@tresjs/post-processing'

const gl = {
toneMapping: NoToneMapping,
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/pmndrs/brightness-contrast.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The `<BrightnessContrastPmndrs>` component is easy to use and provides customiza

```vue{2,8-12,21-25}
<script setup lang="ts">
import { EffectComposerPmndrs, BrightnessContrastPmndrs } from '@tresjs/post-processing/pmndrs'
import { EffectComposerPmndrs, BrightnessContrastPmndrs } from '@tresjs/post-processing'

const gl = {
toneMapping: NoToneMapping,
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/pmndrs/color-depth.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The `<ColorDepthPmndrs>` component is easy to use and provides customizable opti

```vue{2,8-12,21-25}
<script setup lang="ts">
import { EffectComposerPmndrs, ColorDepthPmndrs } from '@tresjs/post-processing/pmndrs'
import { EffectComposerPmndrs, ColorDepthPmndrs } from '@tresjs/post-processing'

const gl = {
toneMapping: NoToneMapping,
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/pmndrs/fxaa.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ When using the `<EffectComposerPmndrs>` pipeline, enabling native antialiasing w

```vue{2,12-14,23-27}
<script setup lang="ts">
import { EffectComposerPmndrs, FXAAPmndrs } from '@tresjs/post-processing/pmndrs'
import { EffectComposerPmndrs, FXAAPmndrs } from '@tresjs/post-processing'

const gl = {
toneMapping: NoToneMapping,
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/pmndrs/grid.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The `<GridPmndrs>` component is easy to use and provides customizable options to

```vue{2,8-12,21-25}
<script setup lang="ts">
import { EffectComposerPmndrs, GridPmndrs } from '@tresjs/post-processing/pmndrs'
import { EffectComposerPmndrs, GridPmndrs } from '@tresjs/post-processing'

const gl = {
toneMapping: NoToneMapping,
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/pmndrs/smaa.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ When using the `<EffectComposerPmndrs>` pipeline, enabling native antialiasing w

```vue{2-3,13-15,24-28}
<script setup lang="ts">
import { EffectComposerPmndrs, SMAAPmndrs } from '@tresjs/post-processing/pmndrs'
import { EffectComposerPmndrs, SMAAPmndrs } from '@tresjs/post-processing'
import type { SMAAPreset } from 'postprocessing'

const gl = {
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/pmndrs/texture.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you need to adjust properties such as **rotation**, **repeat**, or **other at

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