First commit
This commit is contained in:
22
engine/bone.js
Executable file
22
engine/bone.js
Executable file
@@ -0,0 +1,22 @@
|
||||
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 );
|
||||
}
|
||||
Reference in New Issue
Block a user