I seem to have contracted chronic Radial Blur - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html) +--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html) +---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html) +---- Thread: I seem to have contracted chronic Radial Blur (/thread-9938.html) |
I seem to have contracted chronic Radial Blur - Bennick - 08-23-2011 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? RE: I seem to have contracted chronic Radial Blur - Your Computer - 08-23-2011 FadeRadialBlurTo(0f, 0.5f); RE: I seem to have contracted chronic Radial Blur - Bennick - 09-06-2011 (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. RE: I seem to have contracted chronic Radial Blur - xiphirx - 09-06-2011 FadeRadialBlurTo(0.0f, 0.5f); |