Frictional Games Forum (read-only)

Full Version: I seem to have contracted chronic Radial Blur
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay so, I have a function where looking at something causes some sanity damage, and in true Amnesia style, I want it to be accompanied by the Radial Blur effect and a sound effect. When I try to do it though, it stays on my screen and won't go away until I make it to the next map. How do I fade it in and then fade it out?

The two commands were in the function something like this:

FadeRadialBlurTo(1.0f, 0.5f);
FadeIn(1.0f);

What should I do for this to work? is this some kind of timer function?
FadeRadialBlurTo(0f, 0.5f);
(08-23-2011, 04:51 AM)Your Computer Wrote: [ -> ]FadeRadialBlurTo(0f, 0.5f);
Typed that in exactly and it gave me a script error that crashed Amnesia for some reason. Looks right to me, but it don't work.
FadeRadialBlurTo(0.0f, 0.5f);