Ive had this problem since I got the game and asked before with no response but every time I go to get a clip my bike helmet, goggles and a bunch of track objects do this weird glitch thing and I really want to fix it
its usually worse then it is in this clip but you can still see it
https://medal.tv/games/requested/clips/ ... ODMxNzQ0LA
its not the bike model or whatever and its not the helmet bc ive tried multiple bikes and helmets and it does it with everything
bike glitching in replays
Re: bike glitching in replays
It's Z-fighting. It happens when there is a polygon directly behind another polygon and closer than the precision of the depth buffer. Ideally it'd be fixed in the model by not having close overlapped polygons. You can work around it by adding --zdepth 24 to your command line options which will increase the z buffer depth to 24 bits instead of the default 16.
Josh Vanderhoof
Sole Proprietor
jlv@mxsimulator.com
If you email, put "MX Simulator" in the subject to make sure it gets through my spam filter.
Sole Proprietor
jlv@mxsimulator.com
If you email, put "MX Simulator" in the subject to make sure it gets through my spam filter.
Re: bike glitching in replays
That worked, Thank you so muchjlv wrote: ↑Sat Nov 16, 2024 2:57 am It's Z-fighting. It happens when there is a polygon directly behind another polygon and closer than the precision of the depth buffer. Ideally it'd be fixed in the model by not having close overlapped polygons. You can work around it by adding --zdepth 24 to your command line options which will increase the z buffer depth to 24 bits instead of the default 16.