eyeDirection: Difference between revisions
Lou Montana (talk | contribs) m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*)<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - ">Posted on May ([0-9]{2}), ([0-9]{4})" to ">Posted on $2-05-$1") |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 15: | Line 15: | ||
|r1= [[Array]] - 3D Vector | |r1= [[Array]] - 3D Vector | ||
|x1= <sqf> | |x1= <sqf>Can = "Land_Can_V3_F" createVehicle position player; | ||
onEachFrame { | onEachFrame { | ||
Can setPosASL [ | |||
(eyePos player select 0) + (eyeDirection player select 0), | |||
(eyePos player select 1) + (eyeDirection player select 1), | |||
(eyePos player select 2) + (eyeDirection player select 2) | |||
] | |||
}</sqf> | };</sqf> | ||
|x2= Draw AI eye direction (green) and weapon direction (red) in 3D: | |x2= Draw AI eye direction (green) and weapon direction (red) in 3D: | ||
< | <sqf>Bob = createGroup east createUnit ["O_Soldier_F", [0,0,0], [], 0, "NONE"]; | ||
Bob setVehiclePosition [player modelToWorld [0,100,0], [], 0, "NONE"]; | |||
onEachFrame | onEachFrame { | ||
{ | _beg = ASLToAGL eyePos Bob; | ||
_beg = ASLToAGL eyePos | _endE = (_beg vectorAdd (eyeDirection Bob vectorMultiply 100)); | ||
_endE = (_beg vectorAdd (eyeDirection | |||
drawLine3D [ _beg, _endE, [0,1,0,1]]; | drawLine3D [ _beg, _endE, [0,1,0,1]]; | ||
_endW = (_beg vectorAdd ( | _endW = (_beg vectorAdd (Bob weaponDirection currentWeapon Bob vectorMultiply 100)); | ||
drawLine3D [_beg, _endW, [1,0,0,1]]; | |||
};</ | };</sqf> | ||
|seealso= [[positionCameraToWorld]] [[weaponDirection]] [[getCameraViewDirection]] [[vectorDir]] [[vectorDirVisual]] | |seealso= [[positionCameraToWorld]] [[weaponDirection]] [[getCameraViewDirection]] [[vectorDir]] [[vectorDirVisual]] | ||
Line 42: | Line 41: | ||
<dt></dt> | <dt></dt> | ||
<dd class="notedate">Posted on | <dd class="notedate">Posted on 2014-05-26 - 19:10 (UTC)</dd> | ||
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt> | <dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt> | ||
<dd class="note"> | <dd class="note"> |
Revision as of 00:00, 14 May 2023
Description
- Description:
- Returns the direction object is watching (eyes, or a vehicle primary observer).
- Groups:
- Object Manipulation
Syntax
- Syntax:
- eyeDirection unit
- Parameters:
- unit: Object
- Return Value:
- Array - 3D Vector
Examples
- Example 1:
- Example 2:
- Draw AI eye direction (green) and weapon direction (red) in 3D:
Bob = createGroup east createUnit ["O_Soldier_F", [0,0,0], [], 0, "NONE"]; Bob setVehiclePosition [player modelToWorld [0,100,0], [], 0, "NONE"]; onEachFrame { _beg = ASLToAGL eyePos Bob; _endE = (_beg vectorAdd (eyeDirection Bob vectorMultiply 100)); drawLine3D [ _beg, _endE, [0,1,0,1]]; _endW = (_beg vectorAdd (Bob weaponDirection currentWeapon Bob vectorMultiply 100)); drawLine3D [_beg, _endW, [1,0,0,1]]; };
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on 2014-05-26 - 19:10 (UTC)
- Killzone Kid
- This command should have really been named headDirection instead of eyeDirection as one could mistakenly think that eyes direction of your avatar correspond to the direction of the centre of your screen. Play with the script in example 1 to find out limitations. If you need centre of screen direction, use positionCameraToWorld instead.