lineIntersectsSurfaces
From Bohemia Interactive Community
Jump to navigation
Jump to search
Template:Command
Notes
Bottom Section
- Posted on August 27, 2015 - 12:44 (UTC)
- Killzone Kid
-
Fast check if object is in a house:
KK_fnc_inHouse = {
lineIntersectsSurfaces [
getPosWorld _this,
getPosWorld _this vectorAdd [0, 0, 50],
_this, objNull, true, 1, "GEOM", "NONE"
] select 0 params ["","","","_house"];
if (_house isKindOf "House") exitWith {true};
false
};
onEachFrame {hintSilent str (player call KK_fnc_inHouse)};