Epoch/Sources/epoch_config/Configs/CfgPainting.hpp

39 lines
1.2 KiB
C++
Raw Normal View History

2019-05-01 21:31:15 +00:00
class CfgPainting {
class DefaultVehicle
{
2019-05-02 21:07:51 +00:00
UseArmaDefaultColors = "true"; // Use all availabe default colours from Arma
2019-05-01 21:31:15 +00:00
PaintingCosts = 500;
icon = "x\addons\a3_epoch_code\Data\UI\buttons\Paint.paa";
2019-05-02 21:07:51 +00:00
class Pink // Colour will be available for ALL Vehicles
2019-05-01 21:31:15 +00:00
{
ColorName = "Pink";
iconcolor[] = {1,0.0784,0.576,1};
textures[] = {
2019-05-02 21:07:51 +00:00
"#(rgb,8,8,3)color(1,0.0784,0.576,1)"
2019-05-01 21:31:15 +00:00
};
};
};
2019-05-02 21:07:51 +00:00
/* // Define custom colours for each Type like this
2019-05-01 21:31:15 +00:00
class C_Hatchback_01_EPOCH : DefaultVehicle
{
2019-05-02 21:07:51 +00:00
UseArmaDefaultColors = "true"; // Use all availabe default colours from Arma
2019-05-01 21:31:15 +00:00
class Green
{
ColorName = "Green";
2019-05-02 21:07:51 +00:00
iconcolor[] = {0,1,0,1};
2019-05-01 21:31:15 +00:00
textures[] = {
2019-05-02 21:07:51 +00:00
"#(rgb,8,8,3)color(0,1,0,1)"
2019-05-01 21:31:15 +00:00
};
};
};
class C_Hatchback_01_EPOCH1: C_Hatchback_01_EPOCH{};
class C_Hatchback_01_EPOCH2: C_Hatchback_01_EPOCH{};
class C_Hatchback_01_EPOCH3: C_Hatchback_01_EPOCH{};
class C_Hatchback_01_EPOCH4: C_Hatchback_01_EPOCH{};
class C_Hatchback_02_EPOCH: C_Hatchback_01_EPOCH{};
class C_Hatchback_02_EPOCH1: C_Hatchback_02_EPOCH{};
class C_Hatchback_02_EPOCH2: C_Hatchback_02_EPOCH{};
class C_Hatchback_02_EPOCH3: C_Hatchback_02_EPOCH{};
class C_Hatchback_02_EPOCH4: C_Hatchback_02_EPOCH{};
2019-05-02 21:07:51 +00:00
*/
2019-05-01 21:31:15 +00:00
};