Hi, I think that’s related to this issue here: Implement SSREffect · Issue #571 · pmndrs/postprocessing · GitHub
For Needle Engine: Instead of using the postprocessing effects that Needle Engine uses you can also create the effect composer yourself (like you’re doing in vanilla three.js) and just set it on the context e.g. from one of your components. Just don’t use the Volume
component in Unity then.
Here’s a tiny example:
export class MyPostProcessing extends Behaviour {
onEnable() {
const composer = new EffectComposer(...);
// add your effect passes
this.context.composer = composer
}
}
Edit: I’m currently preparing an example and noticed that there’s a regression - will provide a fix in the next update
Edit2: Fixed in latest beta that was just released. Below is a bit of code that you can copy paste in your main.ts OR create a component in src/scripts
and manage it from Unity. The code is basically how the SSR example of three.js works
import { EffectComposer } from 'three/examples/jsm/postprocessing/EffectComposer.js';
import { SSRPass } from 'three/examples/jsm/postprocessing/SSRPass.js';
import { OutputPass } from 'three/examples/jsm/postprocessing/OutputPass.js';
import { PlaneGeometry } from "three";
import * as THREE from "three";
import { onStart } from '@needle-tools/engine';
onStart((context) => {
const { scene, renderer } = context;
const camera = context.mainCamera;
const selects = new Array();
let geometry, material, mesh;
geometry = new PlaneGeometry(1, 1);
const plane = new THREE.Mesh(
new THREE.PlaneGeometry(1, 1),
new THREE.MeshPhongMaterial({ color: 0xcbcbcb })
);
plane.rotation.x = - Math.PI / 2;
plane.position.y = - 0.0001;
// plane.receiveShadow = true;
scene.add(plane);
geometry = new THREE.BoxGeometry(.05, .05, .05);
material = new THREE.MeshStandardMaterial({ color: 'green' });
mesh = new THREE.Mesh(geometry, material);
mesh.position.set(- .12, .025, .015);
scene.add(mesh);
selects.push(mesh);
geometry = new THREE.IcosahedronGeometry(.025, 4);
material = new THREE.MeshStandardMaterial({ color: 'cyan' });
mesh = new THREE.Mesh(geometry, material);
mesh.position.set(- .05, .025, .08);
scene.add(mesh);
selects.push(mesh);
geometry = new THREE.ConeGeometry(.025, .05, 64);
material = new THREE.MeshStandardMaterial({ color: 'yellow' });
mesh = new THREE.Mesh(geometry, material);
mesh.position.set(- .05, .025, - .055);
scene.add(mesh);
selects.push(mesh);
const composer = new EffectComposer(renderer);
composer.setSize(window.innerWidth, window.innerHeight);
const ssrPass = new SSRPass({
renderer,
scene,
camera,
width: innerWidth,
height: innerHeight,
groundReflector: null, //groundReflector,
selects: null, //selects,
});
composer.addPass(ssrPass);
composer.addPass(new OutputPass());
context.composer = composer;
});