Hi,
After following the instructions as Babylon.js Documentation
i experienced many issues relating to the case of paths when opening the links to the main Babylon entry points.
eg:
http://localhost:1338/Playground/index-local.html fails loading http://localhost:1338/tools/DevLoader/BabylonLoader.js.
The correct path should be http://localhost:1338/Tools/DevLoader/BabylonLoader.js.
Tools not tools.
I suspect this will mainly hit Linux and Mac users.
A quick workaround is to create symlinks to Tools and Playground.
From the main Babylon.js directory:
# ln -s tools Tools
# ln -s playground Playground
I submitted Fix case sensitive paths by mrdunk · Pull Request #5695 · BabylonJS/Babylon.js · GitHub as a proper fix.
There’s probably a setting in Gulp somewhere to ignore the case of files it’s serving which would hide this class of problem in the future.
I’ve little experience with Gulp though so don’t really know where to look.
cheers,
dunk.
