最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Extending Three.js classes - Stack Overflow

programmeradmin0浏览0评论

I want to extend the Three.js Object3D class, but can't figure out how to do it.

There's this Stackoverflow question, which I've read, re-read and tried, but can't get it to work for me.

Is there a way to extend a ThreeJS object?

Could anyone offer some specific code on how to get this going? Here's what I have at the moment:

var MyObject3D = function() {
   THREE.Object3D.call(this);
   MyObject3D.prototype = new THREE.CubeGeometry();
   MyObject3D.prototype.constructor = MyObject3D;
}

And to create an instance:

var thing = new MyObject3D();
var testGeo = new THREE.CubeGeometry(10, 10, 10);
var testMat = new THREE.MeshPhongMaterial();
var testMesh = new THREE.Mesh(testGeo, testMat);
thing.add(testMesh);

But calling the "add" method of the MyObject3D instance returns an error that "thing" has no method "add."

What's the deal?

I want to extend the Three.js Object3D class, but can't figure out how to do it.

There's this Stackoverflow question, which I've read, re-read and tried, but can't get it to work for me.

Is there a way to extend a ThreeJS object?

Could anyone offer some specific code on how to get this going? Here's what I have at the moment:

var MyObject3D = function() {
   THREE.Object3D.call(this);
   MyObject3D.prototype = new THREE.CubeGeometry();
   MyObject3D.prototype.constructor = MyObject3D;
}

And to create an instance:

var thing = new MyObject3D();
var testGeo = new THREE.CubeGeometry(10, 10, 10);
var testMat = new THREE.MeshPhongMaterial();
var testMesh = new THREE.Mesh(testGeo, testMat);
thing.add(testMesh);

But calling the "add" method of the MyObject3D instance returns an error that "thing" has no method "add."

What's the deal?

Share Improve this question edited May 23, 2017 at 11:54 CommunityBot 11 silver badge asked Aug 4, 2013 at 12:55 JohnJohn 5651 gold badge6 silver badges14 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

You're setting the prototype to CubeGeometry, which has no add method. Based on the way you're trying to instantiate the object, it looks like you actually want your object to have the Mesh prototype.

Most likely you want something like this:

var MyObject3D = function() {
    // Run the Mesh constructor with the given arguments
    THREE.Mesh.apply(this, arguments);
};
// Make MyObject3D have the same methods as Mesh
MyObject3D.prototype = Object.create(THREE.Mesh.prototype);
// Make sure the right constructor gets called
MyObject3D.prototype.constructor = MyObject3D;

Then to instantiate it:

var testGeo = new THREE.CubeGeometry(20, 20, 20);
var testMat = new Three.MeshNormalMaterial();
var thing = new MyObject3D(testGeo, testMat);
发布评论

评论列表(0)

  1. 暂无评论