Jump to content
felipechapmanfromm

Custom Quad bike textures not showing SOLVED

Recommended Posts

I copied the code from my working offroad texture, modified it for the quad and placed it directly below in cfgVehicles within the config.cpp. In Eden editor the bike shows in the spawn menu but spawns with a default texture. Any help is appreciated.

	class C_Quadbike_01_F;
	class Custom_Quadbike: C_Quadbike_01_F
    {
        crew = "Custom_crew_F";
        side = 1;
        scope = 2;
		scopeCurator = 2;
		vehicleClass = "Car";
        faction = "Custom_Faction";
        displayName = "Custom Quad Bike";
        hiddenSelections[] = {"camo"};
        hiddenSelectionsTextures[] = {"\MyAddon\Data\custom_quad_bike.paa"};
        class EventHandlers
        {
            init = "(_this select 0) setVariable [""BIS_enableRandomization"", false];";
        };  
    };

Cheers

 

SOLVED: 'camo' in hiddenSelections should be 'camo1'

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×