mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
31 lines
833 B
Plaintext
31 lines
833 B
Plaintext
/*
|
|
Author: Aaron Clark - EpochMod.com
|
|
|
|
Contributors:
|
|
|
|
Description:
|
|
Function to check if player is in a building.
|
|
|
|
Licence:
|
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
|
|
|
Github:
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/functions/EPOCH_fnc_isInsideBuilding.sqf
|
|
|
|
Example:
|
|
_inBuilding = call EPOCH_fnc_isInsideBuilding;
|
|
|
|
Parameter(s):
|
|
NONE
|
|
|
|
Returns:
|
|
BOOL
|
|
*/
|
|
//[[[cog import generate_private_arrays ]]]
|
|
private ["_abovePlayerPosASL","_inBuilding","_playerPosASL"];
|
|
//[[[end]]]
|
|
_playerPosASL = visiblePositionASL player;
|
|
_abovePlayerPosASL = [_playerPosASL select 0,_playerPosASL select 1,(_playerPosASL select 2) + 10];
|
|
//Return:
|
|
lineIntersects[_playerPosASL, _abovePlayerPosASL, player]
|