You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot open the p3d in Mikeros Eliteness Debug: lod size mismatch.
I'm very happy that the rvmat contains the Emissive Stage.. BI and mikeros tools remove it when packing the p3d. I heard mikeros paid tools work.
But when trying to place the model Arma crashes.
BinarizeFail.zip
Armake vs Mikero. Files are different but they should be the same. And armake one is crashing Arma when trying to render. Debinarizing using CfgConvert both files give back the same correct output
p3dOutputs.zip
P3D outputs mikero vs armake. Armake is smaller but contains atleast a reference to my z\wolf\addons\KH\tex\lod0Tex_StairMat_EM.paa Mikeros is bigger, 0 results when searching for EM. Although it was in the binarized rvmat that mikero should be packing.
The text was updated successfully, but these errors were encountered:
The crash is caused by armake writing too many texGen's.
There are only 8 texGen's. in armake they are called stage_transform.
Armake add's one transform per stage, which is simply wrong :D
We should only push a new transform/texGen if the actual transform (uvSource and uvTransform) doesn't exist yet. And throw an error if a user tries to use too many.
if (num_transforms > 8) {
logger.error("Too many texGen's being used in RVMAT! Armake will clip excess off and cause weird behaviour! %s\n", path.c_str());
num_transforms = 8;
transforms.resize(8);
for (auto& it : textures) {
if (it.transform_index > 7) it.transform_index = 7;
}
}
atleast until I implement the pushBackUnique style texGen list.
with #79 so that SuperExt can work.
When building https://cdn.discordapp.com/attachments/105781923573456896/449707944771321885/wolf_kh.7z
I cannot open the p3d in Mikeros Eliteness
Debug: lod size mismatch
.I'm very happy that the rvmat contains the Emissive Stage.. BI and mikeros tools remove it when packing the p3d. I heard mikeros paid tools work.
But when trying to place the model Arma crashes.
BinarizeFail.zip
Armake vs Mikero. Files are different but they should be the same. And armake one is crashing Arma when trying to render. Debinarizing using CfgConvert both files give back the same correct output
p3dOutputs.zip
P3D outputs mikero vs armake. Armake is smaller but contains atleast a reference to my
z\wolf\addons\KH\tex\lod0Tex_StairMat_EM.paa
Mikeros is bigger, 0 results when searching for EM. Although it was in the binarized rvmat that mikero should be packing.The text was updated successfully, but these errors were encountered: