implement toggle perspective

(cherry picked from commit cbfb575b2e418215877cecb89e3b4c47d6f56c8d)
This commit is contained in:
LabyStudio
2022-04-13 14:44:46 +02:00
parent 4644b050c6
commit 8db692083b
9 changed files with 99 additions and 37 deletions
@@ -4,17 +4,19 @@ window.ModelBase = class {
* Rebuild the model
*
* @param tessellator Tessellator to render vertices
* @param group Group to attach the built model
*/
rebuild(tessellator, entity) {
rebuild(tessellator, group) {
}
/**
* Render the model
*
* @param group Group to render
* @param time Animation offset
*/
render(time) {
render(group, time) {
}