I have car1animation
and car2animation
, how can after car1animation
start for 3 seconds, then car2animation
start? Or after certain frames?
These docs should help:
1 Like
var event1 = new BABYLON.AnimationEvent(
50,
function () {
console.log("Yeah!");
},
true,
);
// Attach your event to your animation
animation.addEvent(event1);
This is impressive!
1 Like