![]() |
How can I remove view bobbing? - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Technical Support (https://www.frictionalgames.com/forum/forum-57.html) +--- Forum: Technical Support - SOMA (https://www.frictionalgames.com/forum/forum-74.html) +--- Thread: How can I remove view bobbing? (/thread-53289.html) |
How can I remove view bobbing? - tomcat3000 - 11-22-2016 I have the GOG Version of SOMA and I want to remove the head bobbing / camera swaying while walking. In Amnesia: A Machine for Pigs you could edit some lines in the game.cfg file: CrouchBobMax = "0.00 0.00" WalkBobMax = "0.00 0.00" RunBobMax = "0.00 0.00" How is this done in SOMA? These Variables are not in the cfg and adding them have no effect. RE: How can I remove view bobbing? - Mudbill - 11-22-2016 Try editing this section of /scripts/player/MoveState_Normal.hps: PHP Code: //////////////////////////////////////// I imagine setting the first 5 lines to using (0.00, 0.00) should do it. RE: How can I remove view bobbing? - tomcat3000 - 11-22-2016 (11-22-2016, 08:11 PM)Mudbill Wrote: Try editing this section of /scripts/player/MoveState_Normal.hps: Perfect! Thank you very much. |