For Frontend Live 2020 Conference
Animating 3D models is a lot of fun. Have you ever dreamed of doing somersaults or learning to dance like a god? Now it's possible! We will get acquainted with the concepts of rigging, skinning models, and understand why the 3D model needs bones. I will animate my own 3D copy and make it do whatever I want. You will learn this way too :)
https://frontendconf.ru/moscow/2020/abstracts/7135
62. 62
Animation loop
animate: function() {
requestAnimationFrame(animate);
var delta = clock.getDelta();
mixer.update(delta)
controls.update();
renderer.render(scene, camera);
}
Request the browser to repeat animate()
Draw model
Update camera position
requestAnimationFrame