Pure white skybox / background without retro color grading?

I want to make the background of a scene pure white [255, 255, 255] and so far I’ve found this is only possible while using the ColorGradingEffect with the tonemapper set to retro.

To clarify, here’s an example where retro tonemapping is set to default vs retro and the skybox is white.

Default tonemapper:

Retro tonemapper:

I’m wondering if anyone has come up with any trick to displaying pure white when using the default tonemapper?


I’ll run through what I’ve tried so far:

1. Using a billboard gui and cranking up the brightness property

As you can see however this does render as pure white, but a byproduct of this is that the background appears emissive now.

I attempted to add a bloom effect and set the intensity to 0, which does remove the emissive byproduct, but now we no longer achieves pure white (instead we get [253, 253, 253]). This also adds another undesired byproduct which is that things that actually should be emissive (i.e. neon) don’t glow.

2. Using a highlight

Here I use a highlight will fill transparency set to zero. This does provide the desired pure white output, but I noticed that anything with transparency rendered in front of the highlight part doesn’t render at all!


These models are both in front of the white highlight

3. Fog

I searched a fair bit for info on this problem and I’m def not the first person to run into it. One of the common recomendations was to use fog + an inverted sphere mesh. However, these posts were from a couple of years ago and as far as I can tell does not work anymore.


So, aside from these, does anyone know of any working techniques to do this or is it simply impossible?

2 Likes

Why not use atmosphere with the haze set to 10? Or use a skybox?

Another idea is to have an inverted sphere, scaled pretty big using special meshrs.

1 Like

Skyboxes don’t render as pure white unless the tonemapper is set to retro.

I tried the atmosphere with haze set to 10 as you suggested, but that only bumps up the color from [223, 233, 233] to [224, 224, 244] so that doesn’t seem to work either unfortunately.

I already discussed this in my post as something that doesn’t work.

Won’t increasing the brightness work as well?

Also could you maybe try the inverted sphere idea again but this time making the sphere kind of anchored to the head of the player? Also making it neon.

You can achieve this with a Highlight that’s behind everything with:

  • [0, 0, 0] FillColor
  • 1.15 FillTransparency (might need tweaking based on lighting, higher = brighter)
  • Occluded DepthMode
  • 0.9999999 OutlineTransparency (outline has to be visible if FillTransparency is above 1)

This Highlight brightens the background which can pump up the (~225, ~225, ~225) color of a white BillboardGui to (255, 255, 255).

As a bonus you can use any Sky you want. Of course you can also use a white skybox which also means that you wont need a ´BillboardGui´ to achieve the pure white color.
A downside is that the Highlight also brightens up transparent parts, particles, beams etc.

Left is without the Highlight and right is with:

Here’s a file with the Highlight, I just used SurfaceGuis in place of a BillboardGui: White_Skybox1.rbxl (89.9 KB)

4 Likes

This is the best solution I’ve come across thus far.

But, yes for my purposes I don’t want anything in the foreground to be brightened.

Thank you for this though!

1 Like

What about making 6 huge surface guis with no light influence pointed inward in a cubical shape?

IDK about you, ego but…

The inverted sphere works for me. Gives a constant [255,255,255] output.

Here are the properties.

1 Like

Could you post the placefile? I’m not getting that result.

Place1.rbxl (108.6 KB)
There : )

Sorry for late reply btw.

Yeah, unfortunately this is not rendering at pure white for me:

Likely something to do with our computers, not Roblox itself.

Combining kat’s answer with, kat’s again works for me.

The inverted sphere mesh with haze 10 renders as 255,255,255 for me.

Changing the lighting engine may help as well if this doesn’t work for you

May I ask what you need specifically for an exact white?

I mean, it’s ALMOST white? only 8 numbers less…

I may have gotten something even CLOSER! At 252,252,252. Only 3 NUMBERS LESS THAN TRUE WHITE.
Place2.rbxl (109.4 KB)

I also got one more which gets to 254,254,254 but at the cost of a bit of the bloom juice.
Place1.rbxl (109.4 KB)

After this, I don’t think there is a way to get even more pure white in roblox.

1 Like

Yeah that’s what I was afraid of. I could never it get it to pure white it was always just a little off.

True, roblox’s limitations.

Anyways why do you want white with so much accuracy? You know most of the time a human can’t distinguish between 252,252,252 with 255,255,255.

It’s for algorithm purposes. I need the pure white or else the algorithm loses accuracy.

Then why can’t you use tone mapper set to retro?

Also, you can just try experimenting with the color property and try getting it to work.

The only thing that comes to my mind, at this moment, is an Inverted spherical mesh colored white.

Hope this helps.

Because the tonemapper changes the colors of the other stuff in the scene. Ideally, I could get a pure white background in any lighting configuration so that the foreground remains unchanged.