Skip to content
On this page

Renderer ​

The Renderer component is the main component of Tres. It's the one that creates the ThreeJS WebGLRenderer and define your Tres Scene.

vue
<template>
  <TresCanvas shadows :output-encoding="SRGBColorSpace">
    <TresPerspectiveCamera />
      <!-- Your scene goes here -->
  </TresCanvas>
</template>

Canvas size ​

The Renderer component will use the parent element size as the canvas size. If you want to use the window size as the canvas size, you can set the window-size prop to true.

vue
<template>
  <TresCanvas window-size>
    <!-- Your scene goes here -->
  </TresCanvas>
</template>

Or you can use CSS to set your app size.

css
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
#app {
  height: 100%;
  width: 100%;
  background-color: #000;
}

Presets ​

Tres comes with a few presets for the Renderer component. You can use them by setting the preset prop.

Realistic ​

The realistic preset makes easy to setup the renderer for more realistic 3D scenes.

vue
<template>
  <TresCanvas preset="realistic">
    <!-- Your scene goes here -->
  </TresCanvas>
</template>

It's equivalent to:

ts
renderer.shadows: true,
renderer.physicallyCorrectLights: true,
renderer.outputColorSpace: SRGBColorSpace,
renderer.toneMapping: ACESFilmicToneMapping,
renderer.toneMappingExposure: 3,
renderer.shadowMap.enabled: true,
renderer.shadowMap.type: PCFSoftShadowMap

Props ​

PropDescriptionDefault
shadowsEnable shadows in the Rendererfalse
shadowMapTypeSet the shadow map typePCFSoftShadowMap
useLegacyLightsWhether to use the legacy lighting mode or nottrue
outputColorSpaceDefines the output encodingLinearEncoding
toneMappingDefines the tone mapping exposure used by the renderer.NoToneMapping
contextThis can be used to attach the renderer to an existing RenderingContext
powerPreferenceProvides a hint to the user agent indicating what configuration of GPU is suitable for this WebGL context. Can be "high-performance", "low-power" or "default".default
preserveDrawingBufferWhether to preserve the buffers until manually cleared or overwritten..false
clearColorThe color the renderer will use to clear the canvas.#000000
windowSizeWhether to use the window size as the canvas size or the parent element.false
disableRenderDisable render on requestAnimationFrame, usefull for PostProcessingfalse
cameraA manual camera to be used by the renderer.

Defaults ​

Tres tries to be as less opinionated as possible. That's why it doesn't set almost any default value for the Renderer component. You need to set the props you want to use. The only exception is the antialias prop. It's set to true by default.