Hi, I’m
Wilson Reeves
Software Engineer, Designer
Welcome to my engineering and design portfolio, created by yours truly.
See More
function animate() {
let count = 0;
const time = performance.now() / 1000;
scene.traverse( function ( child ) {
if (child.parent == scene && child != bounding_parent) {
child.rotation.x = count + ( time / 24 );
child.rotation.z = count + ( time / 32 );
count ++;
}
if (child.geometry) {
child.updateMatrixWorld();
child.geometry.computeBoundingBox();
}
} );