As a professional HTML programmer (LOL) it always seems too hard to me when I need to create some animation with BabylonJS even when animation as simple as possible.
So I created the tiny library that make animations in BabylonJS close to well known CSS transitions.
Code example:
EasyPropAnimation.run(camera, {
position: new Vector3(5, 7, 5),
target: new Vector3(1.1, 0.16, 3.68),
transition: 'all 1s ease-in-out',
});
Also you can use time in ms and different transitions for different props, and use simple arrays instead of vector’s instance:
There is probably a reason to mention third-party developer solutions in the documentation. This could motivate developers to share their work, and the readers of the documentation will have a broader view of the topic.
Perhaps it could be formatted as links to the playground, in rich link format:
That’s an interesting idea, let me ping @PirateJC about it
I think it wouldn’t be too hard to support, we could have some kind of process where the third-party devs can submit their work and it would automatically add it to the relevant page. Maybe some kind of form or github issues process