Can we crop part of a 3D obj. Object's hidden part should stay hidden moving camera and rotating with mouse. And other objects should stay completely visible always.
The code below crops everything going in x-axis, but I want to show one obj half and other full.
var localPlane = new THREE.Plane( new THREE.Vector3( -1, 0, 0 ), 1 );
renderer.clippingPlanes = [ localPlane ];
renderer.localClippingEnabled = true;
Example: https://jsfiddle.net/muaoqhmq/2/
Want to keep the upper body always while rotating