Jump to content

Fade to black


LTBLStudio

Recommended Posts

Hello,

I am looking for a way to fade my scene to black, fade in and fade out.

Is there something available?

Do I have to use overlays?

I first only wanted to turn my scene in black by changing the background color of the camera and dimming all the lights but the background color is not accessible once the cameras are expanded?

Thanks for your help,

Benjamin

@Cotta

Link to comment
Share on other sites

  • 1 year later...
  • 10 months later...

Just wondering if there are any updates for Focus 3 / Unreal 4.26 / Wave SDK on how to do screen tints / fades.

The "Fade Out" feature in the Wave SDK isn't usable in my case, because I don't want to close our VR app, and also need the ability to fade in, control the fade duration, as well as fade to a specified opacity and color.

I've also tried using the "Splash Screen" bluerprint nodes (Splash Screen — Wave VR 4.4.0 documentation (vive.com)) with a background color and a placeholder image (I don't actually want an image, just the solid color tint) - this looked sort of promising, but when I tried calling SetSplashParam every frame to do a fade, the fade was only updating at a few FPS so not really a convincing fade effect.

The current idea I'm considering is having a translucent plane in front of the camera (only when a fade needs to happen).

The only other thing that comes to mind is modifying all materials in the UE4 project to have a fade / tint function, which isn't too appealing.

Link to comment
Share on other sites

  • 7 months later...
  • 4 weeks later...

Hi all,

Splash Screen still seem to be the best option to animate fade in/out to a colour (by doing SetSplashParams() followed by ShowSplashScreen() on tick/timer).

The jerky/jittery/low fps effect you get is actually caused by the texture format used by the splash screen in: WaveVR\Private\WaveVRSplash.cpp (line 274).
It by default uses PF_A2B10G10R10 which only has 2 bits for alpha = 2^2 = 4 different possible alpha values which isn't enough for this use. 


You can switch to another format has more alpha bits such as: PF_B8G8R8A8, and you'll be able to get smooth fade in/out animations using the wave vr splash screen.
 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...