mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Cargo/Dragging - Add Flexible Fuel Tanks cargo/dragging (#8604)
* Add flexible fueltanks cargo/dragging * Use proper macros in cargo * Enable carrying
This commit is contained in:
parent
b36dac75bf
commit
2ff27d86fb
@ -428,6 +428,12 @@ class CfgVehicles {
|
||||
GVAR(canLoad) = 1;
|
||||
};
|
||||
|
||||
// Flexible Fuel tanks, 300L
|
||||
class FlexibleTank_base_F: ThingX {
|
||||
GVAR(size) = 3;
|
||||
GVAR(canLoad) = 1;
|
||||
};
|
||||
|
||||
// objects
|
||||
class RoadCone_F: ThingX {
|
||||
GVAR(size) = 1;
|
||||
|
@ -247,6 +247,15 @@ class CfgVehicles {
|
||||
GVAR(dragPosition)[] = {0,0.7,0};
|
||||
};
|
||||
|
||||
// Flexible Fuel tanks, 300L
|
||||
class FlexibleTank_base_F: ThingX {
|
||||
GVAR(canCarry) = 1;
|
||||
GVAR(carryPosition)[] = {0,0.65,0};
|
||||
|
||||
GVAR(canDrag) = 1;
|
||||
GVAR(dragPosition)[] = {0,1,0};
|
||||
};
|
||||
|
||||
// some terrain objects
|
||||
|
||||
class Land_CampingTable_F: ThingX {
|
||||
|
Loading…
Reference in New Issue
Block a user