瀏覽代碼

Ensure deploys in direction player faces when throwing

m3ales 4 年之前
父節點
當前提交
d703531703

+ 2 - 1
addons - Copy/RD501_Main/functions/fired_deployable/fnc_fired_deployable_deployServer.sqf

@@ -1,4 +1,4 @@
-params[["_ammo", ""], ["_position", [0,0,0]]];
+params[["_ammo", ""], ["_position", [0,0,0]], ["_direction", 0]];
 
 diag_log format["Deploying Squad Shield for %1 at %2", _ammo, _position];
 
@@ -28,6 +28,7 @@ private _soundDistance = getNumber (_config >> "rd501_fired_deployable_soundDist
 
 private _deployed = createVehicle [_deployable, _position, [], 0, "CAN_COLLIDE"];
 _deployed setPosATL _position;
+_deployed setDir _direction;
 
 if(_timeToLive > 0) then {
 	[

+ 4 - 4
addons - Copy/RD501_Main/functions/fired_deployable/fnc_fired_deployable_firedHandler.sqf

@@ -7,7 +7,7 @@ if (isNull _projectile) then {
 };
 private _config = configFile >> "CfgAmmo" >> _ammo;
 private _deployable = getNumber (_config >> "rd501_fired_deployable");
-
+private _direction = direction _unit;
 if (_deployable == 1) then {
 	[
 		{
@@ -16,12 +16,12 @@ if (_deployable == 1) then {
 			!(isNil "_projectile") && (alive _projectile) && _speed <= 0.1
 		},
 		{
-			params["_projectile", "_ammo"];
+			params["_projectile", "_ammo", "_direction"];
 			private _position = getPosATL _projectile;
-			["rd501_fired_deployable_deployServer", [_ammo, _position]] call CBA_fnc_serverEvent;
+			["rd501_fired_deployable_deployServer", [_ammo, _position, _direction]] call CBA_fnc_serverEvent;
 			deleteVehicle _projectile;
 		},
-		[_projectile, _ammo, _magazine, _unit],
+		[_projectile, _ammo, _magazine, _unit, _direction],
 		10,
 		{ 
 			params["", "", "_magazine", "_unit"];