mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Refuel - Improved fuel hose texture (#8983)
* Added custom fuel hose * Fixed indentation * Added model config for hose * Added model config for hose
This commit is contained in:
parent
286537cd54
commit
7a64ccb7a5
@ -42,6 +42,18 @@
|
||||
|
||||
class CBA_Extended_EventHandlers;
|
||||
|
||||
class CfgNonAIVehicles {
|
||||
class GVAR(fuelHoseSegment) {
|
||||
access = 0;
|
||||
scope = 2;
|
||||
displayName = "Fuel Hose";
|
||||
simulation = "ropesegment";
|
||||
autocenter = 0;
|
||||
animated = 0;
|
||||
model = QPATHTOF(data\hose.p3d);
|
||||
};
|
||||
};
|
||||
|
||||
class CfgVehicles {
|
||||
class ACE_Module;
|
||||
class ACE_moduleRefuelSettings: ACE_Module {
|
||||
@ -82,6 +94,14 @@ class CfgVehicles {
|
||||
model = QPATHTOF(data\nozzle.p3d);
|
||||
destrType = "DestructNo";
|
||||
};
|
||||
|
||||
class Rope;
|
||||
class GVAR(fuelHose): Rope {
|
||||
hiddenSelections[] = {"rope"};
|
||||
hiddenSelectionsTextures[] = {"#(argb,8,8,3)color(0.009,0.009,0.009,1.0,co)"};
|
||||
segmentType = QGVAR(fuelHoseSegment);
|
||||
model = QPATHTOF(data\hose.p3d);
|
||||
};
|
||||
|
||||
class All;
|
||||
class Static: All {};
|
||||
|
7
addons/refuel/data/hose.cfg
Normal file
7
addons/refuel/data/hose.cfg
Normal file
@ -0,0 +1,7 @@
|
||||
class CfgModels {
|
||||
class hose {
|
||||
sectionsInherit = "";
|
||||
sections[] = {"rope"};
|
||||
skeletonName = "";
|
||||
};
|
||||
};
|
BIN
addons/refuel/data/hose.p3d
Normal file
BIN
addons/refuel/data/hose.p3d
Normal file
Binary file not shown.
@ -69,7 +69,7 @@ params [
|
||||
_attachPos = _attachPos select (_hookDistances find selectMin _hookDistances);
|
||||
};
|
||||
private _hoseLength = _source getVariable [QGVAR(hoseLength), GVAR(hoseLength)];
|
||||
private _rope = ropeCreate [_ropeTarget, _attachPos, _nozzle, [0, -0.20, 0.12], _hoseLength];
|
||||
private _rope = ropeCreate [_ropeTarget, _attachPos, _nozzle, [0, -0.20, 0.12], _hoseLength, [], [], QGVAR(fuelHose)];
|
||||
_nozzle setVariable [QGVAR(rope), _rope, true];
|
||||
_nozzle setVariable [QGVAR(attachPos), _attachPos, true];
|
||||
_nozzle setVariable [QGVAR(source), _source, true];
|
||||
|
Loading…
Reference in New Issue
Block a user