From 91680b32180c3986d656ed736b11d66659a1b9b8 Mon Sep 17 00:00:00 2001 From: lzwdgc Date: Tue, 2 Apr 2024 18:13:13 +0300 Subject: [PATCH] [mod_converter2] Remove null textures. --- src/mod_converter2/mod_converter2.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mod_converter2/mod_converter2.cpp b/src/mod_converter2/mod_converter2.cpp index 76c7eb9..a228f16 100644 --- a/src/mod_converter2/mod_converter2.cpp +++ b/src/mod_converter2/mod_converter2.cpp @@ -111,6 +111,8 @@ auto read_model(const path &fn) { break; } } + textures.erase("_DEFAULT_"); // no tex + textures.erase("TEX_TOV_AKTIVMETAL_ANIM"); // this one used as no-texture as well write_lines(path{fn}+=".textures.txt",textures); }