How to view the babylonjs documentation for a specific version? For example, version 7.51.1

How to view the babylonjs documentation for a specific version? For example, version 7.51.1
babylon, is there any document similar to three.js?
In threejs, I can clone the specified version, then npm install, npm run start to view the specified version of the api and examples.

Thanks



We too plan to have documentation as part of the main repo but we had to deal with some personal issues that are slowing us down.

That being said, you can hack you way around by checking the date of a given version from here:
Releases · BabylonJS/Babylon.js

Say 7.51.1:

So we are talking about Feb 2025 (roughtly)

Now let’s check the commits on the doc:
Commits · BabylonJS/Documentation

So you want to clone the doc repo and go back in time to this commit
Add Flow Graph documentation and enhancements (#1283) · BabylonJS/Documentation@4f86f76

1 Like

thanks