Hi! So, I'm starting to learn the art of using screen effects, and I have an issue. I'm using FadePlayerFOVMulTo, but can't figure out how to undo it after a certain amount of time.
Under void Action, I tried to set it back to 0, but it didn't do anything, the screen was still zoomed in. If anyone could help me, I would really appreciate it. Thank you!
Hi! So, I'm starting to learn the art of using screen effects, and I have an issue. I'm using FadePlayerFOVMulTo, but can't figure out how to undo it after a certain amount of time.
Under void Action, I tried to set it back to 0, but it didn't do anything, the screen was still zoomed in. If anyone could help me, I would really appreciate it. Thank you!
It's because the default value is 1 I believe...
My 'reset' call looks like this
FadePlayerFOVMulTo(1, 1);
Hope that helps. In the future, questions like this should go into the 'Development Support' sub-forum
To ZOOM in you may use that function.
FadePlayerFOVMulTo(0.40, 1.4f); <--- in 1 of my scriptlines
The 0.40 means how FAR you wil zoom and the 1.4f is the speed it takes to zoom in.. { the lower the first value the further you will zoom in }
SO.. after you done this you want to look normal again offcourse..
Then use this { copy past if you like }
FadePlayerFOVMulTo(1, 1);
The 1 is go to normal for maybe ALL of the commands in the scriptings.
Hope this small issue helps you out.
If not go here-> http://www.frictionalgames.com/forum/thread-10798.html
(This post was last modified: 03-21-2013, 03:09 PM by DnALANGE.)