Jump to content

Monklie

Member
  • Content Count

    2
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About Monklie

  • Rank
    Newbie
  1. Monklie

    Helmet Textures showing black

    I appreciate your response! Sadly none of these worked for us. Fixed the two different textures, and renamed the files to fit the naming conventions but sadly, neither of those fixed it. We're still new at this, so we appreciate your help!
  2. Hey there! Trying to import models to ARMA 3 for an addon I've been working on (legally bought, rigged them ourselves). We've finished the rigging portion, but we're finding issues in what we assume is an object builder for texturing. Whenever we load up the addon in the game, the hidden selection textures (in our case, the helmet cover) show up as black or brown. The base helmet (which uses the same RVmat as the cover) show's up without any issue, however, it uses a texture set in the object builder instead of the config. The textures have all the proper names and are listed in what we think is the right section of the config. Would anyone mind helping us? Config (Portions referring the selections): class BCO_SHC : ItemCore { scope=2; author="BCO/10SFG"; scopeArsenal=2; displayName="(BCO/10SFG Super High Cut"; picture=" "; model="BCO10SFGHelmets\models\BCO_SHC.p3d" hiddenSelections[]= { "Camo1", // BackPouch "Camo2", // Battery "Camo3", // Comtacts "Camo4", // Cover "Camo5", // Earpro "Camo6", // InforceLight "Camo7", // Olight1 "Camo8", // Olight2 "Camo9", // Patch1 "Camo10", // Patch2 "Camo11", // Patch3 "Camo12", // Strobe "Camo13", // Strobetape "Camo14", // Surefire "Camo15", // VLITE }; hiddenSelectionsTextures[]= { "\BCO10SFGHelmets\Data\SuperHighCut\BCO_SHC_AC.paa", // BackPouch " ", // Battery " ", // Comtacts "\BCO10SFGHelmets\Data\SuperHighCut\BCO_SHC_MC.paa", // Cover " ", // Earpro " ", // InforceLight " ", // Olight1 " ", // Olight2 " ", // Patch1 " ", // Patch2 " ", // Patch3 " ", // Strobe " ", // Strobetape " ", // Surefire " ", // VLITE }; class ItemInfo: HeadgearItem { uniformModel="BCO10SFGHelmets\models\BCO_SHC.p3d"; mass=50; hiddenSelections[]= { "Camo1", // BackPouch "Camo2", // Battery "Camo3", // Comtacts "Camo4", // Cover "Camo5", // Earpro "Camo6", // InforceLight "Camo7", // Olight1 "Camo8", // Olight2 "Camo9", // Patch1 "Camo10", // Patch2 "Camo11", // Patch3 "Camo12", // Strobe "Camo13", // Strobetape "Camo14", // Surefire "Camo15", // VLITE }; hiddenSelectionsTextures[]= { "\BCO10SFGHelmets\Data\SuperHighCut\BCO_SHC_AC.paa", // BackPouch " ", // Battery " ", // Comtacts "\BCO10SFGHelmets\Data\SuperHighCut\BCO_SHC_OD.paa", // Cover " ", // Earpro " ", // InforceLight " ", // Olight1 " ", // Olight2 " ", // Patch1 " ", // Patch2 " ", // Patch3 " ", // Strobe " ", // Strobetape " ", // Surefire " ", // VLITE }; RVMats for the helmet + cover: ambient[] = { 1, 1, 1, 1 }; diffuse[] = { 1, 1, 1, 1 }; forcedDiffuse[] = { 0, 0, 0, 1 }; emmisive[] = { 0, 0, 0, 1 }; specular[] = { 0.1, 0.1, 0.1, 1 }; specularPower = 2; PixelShaderID = "Super"; VertexShaderID = "Super"; class Stage1 { texture = "BCO10SFGHelmets\Data\SuperHighCut\SuperHighCut_NOHQ.paa"; uvSource = "tex"; class uvTransform { aside[] = { 1, 0, 0 }; up[] = { 0, 1, 0 }; dir[] = { 0, 0, 0 }; pos[] = { 0, 0, 0 }; }; }; class Stage2 { texture = "#(argb,8,8,3)color(0.5,0.5,0.5,1,dt)"; uvSource = "tex"; class uvTransform { aside[] = { 1, 1, 0 }; up[] = { 0, 1, 0 }; dir[] = { 0, 0, 0 }; pos[] = { 0, 0, 0 }; }; }; class Stage3 { texture = "#(argb,8,8,3)color(0,0,0,0,mc)"; uvSource = "tex"; class uvTransform { aside[] = { 1, 0, 0 }; up[] = { 0, 1, 0 }; dir[] = { 0, 0, 0 }; pos[] = { 0, 0, 0 }; }; }; class Stage4 { texture = "BCO10SFGHelmets\Data\SuperHighCut\SuperHighCut_AS.paa"; uvSource = "tex"; class uvTransform { aside[] = { 1, 0, 0 }; up[] = { 0, 1, 0 }; dir[] = { 0, 0, 1 }; pos[] = { 0, 0, 1 }; }; }; class Stage5 { texture = "BCO10SFGHelmets\Data\SuperHighCut\SuperHighCut_SMDI.paa"; uvSource = "tex"; class uvTransform { aside[] = { 1, 0, 0 }; up[] = { 0, 1, 0 }; dir[] = { 0, 0, 0 }; pos[] = { 0, 0, 0 }; }; }; class Stage6 { texture = "#(ai,64,64,1)fresnel(0.4,0.2)"; uvSource = "tex"; class uvTransform { aside[] = { 1, 0, 0 }; up[] = { 0, 1, 0 }; dir[] = { 0, 0, 1 }; pos[] = { 0, 0, 0 }; }; }; class Stage7 { texture = "a3\data_f\env_land_ca.paa"; useWorldEnvMap = "true"; uvSource = "tex"; class uvTransform { aside[] = { 1, 0, 0 }; up[] = { 0, 1, 0 }; dir[] = { 0, 0, 1 }; pos[] = { 0, 0, 0 }; }; }; class StageTI { texture = "a3\data_f\default_vehicle_ti_ca.paa"; };
×