Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción
The comment will appear on several of your mods because the game logs have errors related to them. I assume the situation is the same in each case.
There are multiple entries in the logs with your mod IDs, but they all refer to the same files ("blankspecular.dds" and "blankbump.dds"). They look something like this:
"C3DHelp_ReadFileIntoBuffer FAILED fopen(\steamapps\workshop\content\784150\MODID\blankspecular.dds)"
"C3DHelp_ReadFileIntoBuffer FAILED fopen(\steamapps\workshop\content\784150\MODID\blankbump.dds)"
From what I see, in "*.mlt" files you use "$TEXTURE_MTL", which means that the given texture should be in the same directory as the MLT file. If, as I think, you want to use the texture from the game directory, use "$TEXTURE" and the appropriate path. For example, in "panelak_moderny.mtl" there are these entries (they should work for you):
"$TEXTURE 1 buildings/blankspecular.dds"
"$TEXTURE 2 buildings/blankbump.dds"
Can you verify this?