Repro Mod: https://cdn.discordapp.com/attachments/108187245529268224/1131896763196903435/retexBipods.pbo
Currently it never works, but the config should retex a bipod solid red.
```
class CfgPatches
{
class PLP_retexBipod
{
units[] = {};
weapons[] = {};
requiredVersion = 0.1;
requiredAddons[] = {"A3_Data_F_AoW_Loadorder"};
};
};
class CfgWeapons
{
class bipod_01_F_snd;
class PLP_testBipod: bipod_01_F_snd
{
hiddenSelections[] = {"camo_1"};
hiddenSelectionsTextures[] = {"#(argb,1,1,1)color(1,0,0,1,co)"};
displayName = "retexBipodTest";
};
};
class UnderBarrelSlot;
class UnderBarrelSlot_rail: UnderBarrelSlot
{
class compatibleItems
{
PLP_testBipod = 1;
};
};
```