Files
Kepler/engine/bone.js
2025-11-17 17:18:43 +01:00

22 lines
314 B
JavaScript
Executable File

kepler.bone(){
this.isRoot;
this.name;
this.parent;
this.children = [];
this.transformation;
this.globalTransformation;
this.offsetMatrix;
this.positionkeys;
this.rotationkeys;
this.currentAnimationMatrix;
this.entity;
}
kepler.bone.prototype.addChild( bone ) {
this.children.push( bone );
}