Page 1 of 1
bike glitching in replays
Posted: Fri Nov 15, 2024 8:35 pm
by Rake_314
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
Re: bike glitching in replays
Posted: Sat Nov 16, 2024 2:57 am
by jlv
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.
Re: bike glitching in replays
Posted: Sat Nov 16, 2024 3:43 am
by Rake_314
jlv 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.
That worked, Thank you so much
Re: bike glitching in replays
Posted: Wed Jan 22, 2025 9:51 pm
by Lovesover
Im a little confused on how to get the command to work, whenever i go to type that command in my command thing it doesn't work. am I putting it in the wrong spot or something
Re: bike glitching in replays
Posted: Fri Jan 24, 2025 1:44 am
by jlv
Lovesover wrote: ↑Wed Jan 22, 2025 9:51 pm
Im a little confused on how to get the command to work, whenever i go to type that command in my command thing it doesn't work. am I putting it in the wrong spot or something
Command line options means either in the shortcut target or on the command line if you're starting the game from a command prompt.