I played the steam version, and aside from slow loading screens and a bit of stutter it ran ok, now with this 4.0.13 version it crashes VERY often when going to the hallway outside the apartment, is there something I can do? (I copied the file you asked about.)
Also, the changelogs say they improved performance, from my perspective using a shitty pc, it feels like mockery when the game crashes.
Sorry for the late reply, this is actually the key to your crash
d3d11: failed to create staging 2D texture w=5606 h=3243 d3dfmt=28 [8007000e]
That means few things;
Direct3D 11 failed to allocate a texture
Resolution:
5606 × 3243 (VERY large)
Error code
8007000E = E_OUTOFMEMORY
This is a GPU issue not Scripting;
You are running Intel HD520 (Integrated Graphics)
Vram is a shared system memory,
Large textures + staging buffers = very fragile on iGPUs
Unity tries to create a staging texture (CPU-readable copy)
likely for: screen capture, transition fade, UI snapshot, video frame, post processing, blackscreen effects and it runs you out of allocatable memory
The crash for you happens often during blackscreen + transition
as you can see here
ShowBlackScreenV2
ShowBlackScreenV2-1
...
d3d11: failed to create staging 2D texture
that suggests;
A full resolution render is being created possibly at native res, posibly multiple times without freeing memory;
The texture size (5606×3243) is not normal screen res which implies ;
Offscreen render target,
screenshot sized buffer,
scaled UI render;
camera capture
this part
ResetRightUpEffects
ReStartRightUpEffects
AseSwitchToNormal
Suggests frequent animation resets.
TLDR; what you can try doing:
set resolution to 1280x720 or 1600x900
avoid borderless fullscreen
use exclusive fullscreen if possible
try launching with: -force-d3d11
or
-force-d3d11-no-singlethreaded
disable as much effects in settings;
and close memory heavy apps such as browsers and disable overlays (Discords, steam)
And update your graphics 31.0.101.2111 this is not the newest update for 520
And I know everyone has money issues nowadays but invest 300$ and buy a better computer because thats really outdated graphics!