First commit

This commit is contained in:
2025-11-17 17:18:43 +01:00
parent 2286a3b782
commit bca5ef911b
905 changed files with 950521 additions and 2 deletions

22
engine/bone.js Executable file
View 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 );
}