Pmndrs Effects

Effects powered by pmndrs/postprocessing.

Pmndrs effects wrap the excellent library. They are composed inside <EffectComposerPmndrs> and use the Pmndrs suffix to distinguish them from native Three.js effects.

<script setup lang="ts">
import { BloomPmndrs, EffectComposerPmndrs } from '@tresjs/post-processing'
</script>

<template>
  <TresCanvas>
    <Suspense>
      <EffectComposerPmndrs>
        <BloomPmndrs />
      </EffectComposerPmndrs>
    </Suspense>
  </TresCanvas>
</template>