I ran into a problem with the bloom feature that I implemented. However, this seems not to be a bloom-related issue, but more a ThreeJS related one. Here is an example file, with the bloom effect I wanted to achieve: https://donalffons-interface.s3.amazonaws.com/Verge3D/BloomBug/Verge3DTest.html
This file runs fine in my laptop’s web browser. But it crashes on my phone (tried it on two different phones).
I drilled down on the issue a bit and found out, that seemingly as soon as I include ThreeJS in my main HTML page, it crashes on my phones. Example: https://donalffons-interface.s3.amazonaws.com/Verge3D/ThreeJSFail/ThreeJSFail.html
However, I think I need ThreeJS for the bloom effect (right?!).
<html lang="en">
<head>
...
</head>
<body>
<div id="container"></div>
<script src="build/three.js"></script>
<script src="v3d.js"></script>
<script src="ThreeJSFail.js"></script>
</body>
</html>
Am I doing something wrong? Is there a way around this problem?
Attached is the simplified (second) example.
Here you can download the first (bloom) example: https://donalffons-interface.s3.amazonaws.com/Verge3D/BloomBug/Verge3DBloom.zip