Control Ultimate Edition

Control Ultimate Edition

Ver estadísticas:
Zazzone 27 AGO 2019 a las 12:04
how to disable motion blur ?
nothing to do the development are incapable who know only games full of animations and full of horrendous effects of post processing !

< >
Mostrando 16-30 de 65 comentarios
Chinpo 28 AGO 2019 a las 8:35 
Publicado originalmente por rajkosto:
d3d11 only:
extract contents of this archive into game dir, overwriting existing dlls: https://files.sshnuke.net/ControlToggleMotionBlurWithF4.7z hit F4 ingame to toggle motion blur or edit ini and change w2=1 to w2=0 for it to start off by default

makes the game actually playable for me, cant stand motion blur, so even though it took some basic shader hacking, i had to do it
shader changes are the same as in the quantum break 3d vision fix by masterotaku that had the motion blur toggle option, just ported to slightly new shader.

absolute shame the devs ruin their games with this awful post processing (in quantum break it was used to slightly hide bad TAA artefacting but Control doesnt even use TAA so why isnt it an option to disable it in options right next to the film grain checkbox ???)

This doesn't work for me unfortunately :/ I extracted the files but F4 does nothing for me.
Which Ini file do I have to edit?
Porky Pig 28 AGO 2019 a las 23:34 
Have you tried Alt-F4 :lunar2019grinningpig:
Munson 28 AGO 2019 a las 23:37 
Doesn't work on me either. A shame since with motion blur activated the game is nearly unplayable.
rajkosto 29 AGO 2019 a las 5:47 
as the first sentence says, its d3d11 only, so you must run Control_DX11.exe if its running in d3d12 for you
you did extract the 7z so that the files end up next to Control_DX11.exe, right ?
Icy1007 29 AGO 2019 a las 6:04 
Publicado originalmente por Roderrick:
Wait you have the game and can play how? I cant buy!
Oh wait its on Epic Store and you have too come to steam for help for the game beacuse there is no Forum like function in the epic stor and i assume on the wepsite from the game.
Nice work Puplisher nice work.
Sorry for the Irony ^^
The main support forum for this game is on Reddit, not here.
KaityUK 31 AGO 2019 a las 5:17 
Publicado originalmente por Martha Pepper:
Publicado originalmente por Roderrick:
Wait you have the game and can play how? I cant buy!
Oh wait its on Epic Store and you have too come to steam for help for the game beacuse there is no Forum like function in the epic stor and i assume on the wepsite from the game.
Nice work Puplisher nice work.
Sorry for the Irony ^^
That's exactly what happened, yes. I looked on a forum for help and found an answer. Anyway, back to the game :)

Cool response, it made me LOL in real life :)
rajkosto 31 AGO 2019 a las 10:55 
You can just hex edit the renderer dlls to do the same thing instead (instructions not by me):

For DX11 hex edit renderer_rmdwin7_f.dll:

78A53C: 01 -> 00 bool rend::RenderOptions::RenderDepthOfField
78A53D: 01 -> 00 bool rend::RenderOptions::RenderVectorBlur
78A54E: 01 -> 00 bool rend::RenderOptions::ScreenSpaceAntialiasing

For DX12 hex edit renderer_rmdwin10_f.dll:

7AE73D: 01 -> 00 bool rend::RenderOptions::RenderDepthOfField
7AE73E: 01 -> 00 bool rend::RenderOptions::RenderVectorBlur
7AE74F: 01 -> 00 bool rend::RenderOptions::ScreenSpaceAntialiasing

The RenderVectorBlur variable is responsible for camera motion blur. No need to use the injection DLL patch anymore and it works under DX12 too.

I suggest not editing anything other than RenderVectorBlur (at 0x78A53D for d3d11 and 0x7AE74E for d3d12)

Zorbak1 1 SEP 2019 a las 18:32 
Your advice is very good, and this works great. The game looks so much better with Motion Blur and Depth of Field off.

I think your post is hard to understand if you don't know hex editing, so I'm copy and pasting from reddit how to do this in an easier to understand manner.

I give all credit to reddit user u/Atari1337 for these words, and always back up the proper DLL files before editing

How to disable Motion Blur, DOF, and SSA [dx11 & dx12]

Hey, quick tutorial on how to disable Motion Blur, DOF (depth of field), and SSA (screen space anti-aliasing) or any combination of them.

download HxD, hex editor

open up the corresponding dll listed below in HxD

press CTRL + G and enter in the bits listed below

go to that offset

change the bits from 01 to 00

save!

DX11 - renderer_rmdwin7_f.dll:

bits - effect
78A53C - RenderDepthOfField
78A53D - RenderVectorBlur (motion blur)
78A54E - ScreenSpaceAntialiasing


DX12 - renderer_rmdwin10_f.dll:

bits - effect
7AE73D - RenderDepthOfField
7AE73E - RenderVectorBlur (motion blur)
7AE74F - ScreenSpaceAntialiasing


edit: please don't distribute these files, not sure the legality of that. :)
also probably leave SSA on, its a jaggy mess without it.
Publicado originalmente por Hans:
Do not download this mans rootkit
For anyone else that finds this thread and this comment above:
This file above has no executables in it, but does have Two DLL files. Here's the results on Virustotal for those DLL's:
https://www.virustotal.com/gui/file/a338374d1c1a335322d868a483369d8aa754ddbdc511ae48807662a7a9165f30/detection

https://www.virustotal.com/gui/file/a393a6356923ae125ef24368d298b5401c6c1a1f6371e49382fd4599f7b9155f/detection

0/67 for both. There is no "Rootkit" in any of these files.
Aemony 5 SEP 2019 a las 0:12 
Publicado originalmente por rajkosto:
but Control doesnt even use TAA

Control seems to use TAA, although it doesn't expose an option to disable it. DigitalFoundry mentions it in their Control PC: a vision for the future of real-time rendering?[www.eurogamer.net] article:

Again, regardless of whether you are running RT or not, the game offers MSAA - which is rather rare for a modern title and is surprisingly cheap. The game's TAA anti-aliasing does a pretty great job on opaque edges with MSAA helping in keeping transparency edges more stable, or improving consistency on hair effect. I recommend leaving MSAA off to save for other, more important visual aspects, but if you use the 2x option you only lose around three per cent of performance, rising to seven per cent at 4x.
So does anyone have any way to disable motion blur in DX12? The fix here posted in this thread works but it's only for DX11.
Aemony 5 SEP 2019 a las 13:36 
Publicado originalmente por Aquafawks:
So does anyone have any way to disable motion blur in DX12? The fix here posted in this thread works but it's only for DX11.

https://pcgamingwiki.com/wiki/Control#Motion_blur

For the DirectX 12 mode,

Open renderer_rmdwin10_f.dll in a hex editor (e.g. HxD).
Search for 02 00 00 00 01 01 01 as hex and replace it with 02 00 00 00 01 01 00
Save the changes.
Okay. Since no one else was doing this (I don't know why) I'm doing it. I used the hex editor and I flipped the flags to disable motion blur in the two DLL's.

I did -NOT- touch either RenderDepthOfField, nor ScreenSpaceAntialiasing, -ONLY- motion blur off.

Here's a link to the file, installation instructions are in a text file inside the zip file. It's pretty easy. Extract two files.

http://www.outfoxed.net/Control-Fixed-DLL-Files_DX11&DX12.zip

CONFIRMED! Now confirmed (Thank you Bloody Daemon) that both the DirectX-11, -AND- the DirectX-12 DLL's both work 100%.
Última edición por 🦊Λℚ𝓤ΛƑΛᗯҜᔕ🦊; 5 SEP 2019 a las 17:44
Bloody Daemon 5 SEP 2019 a las 16:08 
Publicado originalmente por Aquafawks:
Okay. Since no one else was doing this (I don't know why) I'm doing it. I used the hex editor and I flipped the flags to disable motion blur in the two DLL's.

I did -NOT- touch either RenderDepthOfField, nor ScreenSpaceAntialiasing, -ONLY- motion blur off.

Here's a link to the file, installation instructions are in a text file inside the zip file. It's pretty easy. Extract two files.

http://www.outfoxed.net/Control-Fixed-DLL-Files_DX11&DX12.zip

I can confirm it worked for DirectX-11, but I don't use windows 10 so I don't have access to try the DX-12 version. If someone could test and write back in this thread (please) if my fixed file works in DX-12 that would be nice of you.

YES! It works with DX12, thank you very much!
Publicado originalmente por Bloody Daemon:
YES! It works with DX12, thank you very much!
Okay! Thanks for testing. I'll update my post above and if you could either edit or remove the quote there that would be great.
Última edición por 🦊Λℚ𝓤ΛƑΛᗯҜᔕ🦊; 5 SEP 2019 a las 17:49
< >
Mostrando 16-30 de 65 comentarios
Por página: 1530 50

Publicado el: 27 AGO 2019 a las 12:04
Mensajes: 65