loaded irr file
loaded irr file
I load in a lightmapped .irr file - I notice when the camera view moves around, the edges of objects flicker slightly. Is there anything in irrEdit I can set to decrease this, or in irrlicht?
-
- Posts: 34
- Joined: Tue Aug 22, 2006 2:48 pm
- Location: Malaysia
that's z-fighting, usually a model design flaw.
making less space between the near and far planes of the camera will make it look slightly better, or using a higher resolution z-buffer. (svn irrlicht has a higher res depth buffer by default, or in 1.1 you can enable the stencil buffer). if your faces are very close together or overlapping then there's nothing much you can do about it apart from make them further apart
making less space between the near and far planes of the camera will make it look slightly better, or using a higher resolution z-buffer. (svn irrlicht has a higher res depth buffer by default, or in 1.1 you can enable the stencil buffer). if your faces are very close together or overlapping then there's nothing much you can do about it apart from make them further apart