mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
vector building enhancements
rework tempTarget for vectored objects and snapping
This commit is contained in:
parent
8fbe8559d9
commit
3eb4d63eba
@ -302,42 +302,31 @@ if (_class != "") then {
|
||||
|
||||
// Vector + Snapping
|
||||
if(!(_vectorUp select 0 == 0) || !(_vectorUp select 1 == 0) || !(_vectorUp select 2 == 1)) then{
|
||||
_tiltFB = (((_vectorUp select 0 < 0) && (_vectorUp select 1 > 0)) || ((_vectorUp select 0 > 0) && (_vectorUp select 1 < 0)));
|
||||
_tiltLR = (((_vectorUp select 0 > 0) && (_vectorUp select 1 > 0)) || ((_vectorUp select 0 < 0) && (_vectorUp select 1 < 0)));
|
||||
_tempClass = getText(_cfgBaseBuilding >> (typeOf _nearestObject) >> "GhostPreview");
|
||||
EPOCH_tempTarget = _tempClass createVehicleLocal [0,0,0];
|
||||
EPOCH_tempTarget setPosATL (getPosATL _nearestObject);
|
||||
EPOCH_tempTarget setVectorDirAndUp [_vectorDir, _vectorUp];
|
||||
EPOCH_tempTarget setDir ((getDir _nearestObject) + (EPOCH_snapDirection * 90));
|
||||
if(_snapType isEqualTo "perp")then{
|
||||
if( ((_tiltFB) && (_snapMemoryPoint in ["W","E"]) && (EPOCH_snapDirection in [0,2])) || ((_tiltLR) && (_snapMemoryPoint in ["N","S"]) && (EPOCH_snapDirection in [1,3])))then{
|
||||
EPOCH_tempTarget setVectorUp _vectorUp;
|
||||
};
|
||||
if( ((_tiltFB) && (_snapMemoryPoint in ["N","S"])) || ((_tiltLR) && (_snapMemoryPoint in ["W","E"])) )then{
|
||||
EPOCH_tempTarget setVectorUp _vectorUp;
|
||||
};
|
||||
};
|
||||
if(_snapType isEqualTo "para")then{
|
||||
if((_tiltFB) && (EPOCH_snapDirection in [0,2]))then{
|
||||
EPOCH_tempTarget setVectorUp _vectorUp;
|
||||
};
|
||||
if((_tiltLR) && (EPOCH_snapDirection in [1,3]))then{
|
||||
EPOCH_tempTarget setVectorUp _vectorUp;
|
||||
};
|
||||
};
|
||||
_newDir = vectorDir EPOCH_tempTarget;
|
||||
_vectorDir = _newDir;
|
||||
if!(_tempClass isEqualTo "")then{
|
||||
EPOCH_tempTarget = _tempClass createVehicleLocal [0,0,0];
|
||||
EPOCH_tempTarget setPosATL (getPosATL _nearestObject);
|
||||
EPOCH_tempTarget setVectorDirAndUp [_vectorDir, _vectorUp];
|
||||
EPOCH_tempTarget setDir ((getDir _nearestObject) + (EPOCH_snapDirection * 90));
|
||||
|
||||
_currentTarget setposATL _snapPosition;
|
||||
_currentTarget setDir ((getDir _currentTarget) + (EPOCH_snapDirection * 90));
|
||||
_currentTarget setVectorDirAndUp [_vectorDir,_vectorUP];
|
||||
// hideObject EPOCH_tempTarget;
|
||||
|
||||
if(_snapType in ["para","perp"])then{
|
||||
EPOCH_tempTarget setVectorUp _vectorUp;
|
||||
};
|
||||
_newDir = vectorDir EPOCH_tempTarget;
|
||||
_vectorDir = _newDir;
|
||||
|
||||
deleteVehicle EPOCH_tempTarget;
|
||||
EPOCH_tempTarget = objNull;
|
||||
|
||||
_currentTarget setposATL _snapPosition;
|
||||
_currentTarget setDir ((getDir _currentTarget) + (EPOCH_snapDirection * 90));
|
||||
_currentTarget setVectorDirAndUp [_vectorDir,_vectorUP];
|
||||
};
|
||||
};
|
||||
|
||||
_snapped = true;
|
||||
if(!isNil "EPOCH_tempTarget")then{
|
||||
deleteVehicle EPOCH_tempTarget;
|
||||
EPOCH_tempTarget = objNull;
|
||||
};
|
||||
_arr_snapPoints = [];
|
||||
EPOCH_arr_snapPoints = [];
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user