Hi, I’ve been attempting to get BILLBOARDMODE_STRETCHED to work but unsure how to use it. I couldn’t get it working locally in my project (simply adding particleSystem.billboardMode = ParticleSystem.BILLBOARDMODE_STRETCHED means I don’t see any particles)
(fyi, the playground for billboardmode_stretched Babylon.js Playground linked in the docs seems to be broken, nothing shows on the screen - but simply commenting billboardmode_stretched doesn’t seem to fix it so probably something else going on)
I tried for your demo explicitly adding particleSystem.isBillboardBased = true; (Don’t actually think you need this) but didn’t seem to do anything either.
As for the demo in the docs. Babylon.js Playground I too was a little mislead at first because I saw nothing as well. But then if you read the code a little bit line 162 you’ll see you have to press space to get it to start and it’s working just fine.
if(event.keyCode == 32)
{...
That said I’m not sure what’s wrong with you code specifically so I’m going to look more. I pulled another demo which I also noticed did not seem to do anything until I moved to 4.2 version so it could be a hidden bug somewhere or that could be unrelated.