Page 1 of 1

Problem with my own model.

Posted: 26 Jan 2019 01:17
by PetrMates
Hello ProModders! I tried to making and converting a simple model.
I watched SCS Tutorial 1-5
This is what i saw in game log

Code: Select all

00:03:13.470 : <ERROR> Mipmapping is not supported for npot texture: '/model/vmos/vmos.dds'.
00:03:13.490 : <ERROR> [dx9] Failed to create 2D texture. [0x8876086c]
00:03:13.490 : <ERROR> [dx9] Failed to create texture in hw_load().
00:03:13.490 : <ERROR> FIXME: Texture update failed (/model/vmos/vmos.tobj)
00:03:13.490 : <ERROR> Mipmapping is not supported for npot texture: '/model/vmos/vmos.dds'.
00:03:13.490 : <ERROR> [dx9] Failed to create 2D texture. [0x8876086c]
00:03:13.490 : <ERROR> [dx9] Failed to create texture in hw_load().
It also crashes in map editor.

Re: Problem with my own model.

Posted: 26 Jan 2019 04:21
by jdenm8
Your DDS is malformed. Re-convert it.

Re: Problem with my own model.

Posted: 26 Jan 2019 16:40
by KrysEmlyn
More to the point, the dimensions are not power of two (NPOT).
Make sure the image dimensions are of even numbers (ie 800x600) and not odd numbers (ie 717x600).

Re: Problem with my own model.

Posted: 26 Jan 2019 16:48
by PetrMates
Thank you for the help!