I want to dispose or just disable “bloom”.
Can pls somebody show me how to do that.
If I use dispose, all the other instances also are disposed.
Cheers. Werner
I want to dispose or just disable “bloom”.
Can pls somebody show me how to do that.
If I use dispose, all the other instances also are disposed.
Cheers. Werner
There was the syntax error in your PG. Should be:
scene.getMeshByName("bloom").isVisible = false;
You cannot dispose it since it will dispose all its instances as well, but you can make it invisible - https://playground.babylonjs.com/#5ILMF5#27
O thank you so much.