Files
GameStarter/src/js/net/minecraft/client/render/model/ModelBase.js
T
LabyStudio 62d7ba24b9 implement character limb swing animation
(cherry picked from commit 19c59e38feff562ccbaade8e38fdd303bba784a5)
2022-05-02 04:45:40 +02:00

17 lines
349 B
JavaScript

window.ModelBase = class {
/**
* Rebuild the model
*
* @param tessellator Tessellator to render vertices
* @param group Group to attach the built model
*/
rebuild(tessellator, group) {
}
render(entity, limbSwingAmount, limbSwing, timeAlive, yaw, pitch) {
entity.group.updateMatrix();
}
}