I want my child object to inherit prototype of more than one parent, this doesnt work:
child.prototype = Object.create(parent1.prototype, parent2.prototype);
and also this:
child.prototype = Object.create(parent1.prototype);
child.prototype.add(Object.create(parent2.prototype));
any suggestions ?
EDIT : Im using THREE.JS with CHROME