I am trying to add bloom in my unity game for mobile phones using URP,
The problem is, everything works perfectly in the editor/pc,
But the bloom effect vanishes on the actual apk build.
This is how it looks in the editor - Upper window is game view and below is the scene view
All the other post processing effects works except bloom…
Unity Version - 2020.1.2f1 URP Version - 8.2.0
Post processing is enabled on the camera component
HRD is enabled in the SRP settings asset
I don’t know what am I missing or even it is possible to have bloom on mobile.
I’ve tried all sorts of things, but nothing works, Even tried on multiple android devices,
But I get same results every time…
Anyone who knows how to make it work, please help me, I’ll be really grateful.
I haven’t seen Post Processing work in a Mobile WebGL build [of mine] yet. I’ve been assuming that’s because my mobile browser only supports WebGL 1.0… but I could be mistaken, and if it does work without requiring 2.0, I’d like to know. You might also notice shadows not working under WebGL 1.0 either. Given these two things plus severe constraints on memory, plus how long it takes to load, I’ve pretty much decided it’s just too new and won’t be production-ready for another 5-10 years when devices are better and the technology has matured. I really do hope it gets to the point that apps are a thing of the past… but I’m not holding my breath.
Has anyone found a solution to this as i have been struggling away with the exact same issue on android devices
Okay i figured it out, you need to go into the URP assets (search “UniversalRenderPipeline” in package manager) find the High Quality asset and go in and make sure that HDR is turned on, i also turned on Anti Aliasing to 4x, bloom effect was working perfectly after I did this
Disable “Auto Graphics API” in Build Settings, put OpenGLES3 first followed by OpenGLES2. There is no Bloom for devices that only have OpenGLES2, so this will make sure it tries 3 first but the app will fall back to 2 if it can’t initialize.
You can check whether Bloom is supported on the device at runtime like this:
Hey, I tried variety of different things but, nothing worked
Then I
Created a new empty URP project
Switched platform to Android
Set “Edit > Project Settings > Quality > Quality” to High instead of medium or low for android
Made sure that under “Edit > Project Settings > Player > Other Settings > Rendering > Graphics APIs”, Vulkan and OpenGLES3 are selected
Then Enabled “Quality > HDR” and “Post Processing > High Dynamic Range” in the Scriptable Render Pipeline Asset (SRP) which can be found in your Project files
Deleted default camera and added new one, set “Rendering > Post Processing” to true in the Camera Component from the Inspector Window
Ran a test build by adding a cube to the scene with an emissive material and building the APK
IT WORKED, this screenshot is taken on my android phone
Just make sure that your device supports OpenGLES3, that you can check using CPU-Z, that’s it
Lastly I copied all my project files from previous project to the new one, And things are going on pretty well since then…
Try these exact steps in the same order, I explained it in detail, because I was really frustrated when I was facing this problem and I wasted 2 full days figuring out a solution…
Hi, I ran into a problem that shader graph shaders do not work on android devices, switching helped o High instead of medium or low for android helped me! Thanks!