Page 1 of 1

Screen/camera shakes Unreal Engine 4

Posted: Sat Mar 09, 2024 5:16 pm
by teyhox
Hello !

I'd like to know if there any simple method (modify config file, console command, CE stuff, etc) that allow to disable screen/camera shakes in Unreal Engine 4 games.

Thanks for your time ! :oops:

Re: Screen/camera shakes Unreal Engine 4

Posted: Sat Mar 09, 2024 6:18 pm
by SunBeam
There is no universal method, as Unreal Engine games have 2 major systems: the Engine itself and the Game. The developers can implement the camera and its properties in various ways. The only path to get there I see feasible is to dump Unreal UObjects and start looking through the list of UFunctions for words like "camera" and "shake", or even U/FProperties you could set to 0 so shaking stops that way. The reason I'm saying this is most likely you won't have access to debug symbols to directly inspect symbols for those strings I mentioned. From there, it's all about how you want to proceed, so there's no generic start to finish mechanism I could elaborate on.

Re: Screen/camera shakes Unreal Engine 4

Posted: Sat Mar 09, 2024 6:39 pm
by teyhox
That's what I was afraid of.... Thanks to have taken the time to answer ! Take care.