62d7ba24b9
(cherry picked from commit 19c59e38feff562ccbaade8e38fdd303bba784a5)
17 lines
349 B
JavaScript
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();
|
|
}
|
|
|
|
} |