getPilotCameraTarget: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Game version" to "|Game version=")
m (Text replacement - "Bool" to "Boolean")
Line 16: Line 16:
|p1= object: [[Object]] |PARAMETER1=
|p1= object: [[Object]] |PARAMETER1=
| [[Array]] - [isTracking, targetPosition, targetObject]; returns [false,[0,0,0],<NULL-object>] if camera is not in a tracking mode or if object has no [[A3_Targeting_config_reference#class_pilotCamera|pilotCamera]].  
| [[Array]] - [isTracking, targetPosition, targetObject]; returns [false,[0,0,0],<NULL-object>] if camera is not in a tracking mode or if object has no [[A3_Targeting_config_reference#class_pilotCamera|pilotCamera]].  
* isTracking: [[Bool]] - returns whether the camera is in a tracking mode
* isTracking: [[Boolean]] - returns whether the camera is in a tracking mode
* targetPosition: [[Array]] - format [[PositionASL]], returns the position of the tracked area or object
* targetPosition: [[Array]] - format [[PositionASL]], returns the position of the tracked area or object
* targetObject: [[Object]] - returns the tracked object, [[objNull]] if camera is only tracking an area
* targetObject: [[Object]] - returns the tracked object, [[objNull]] if camera is only tracking an area

Revision as of 01:19, 24 August 2020

Hover & click on the images for description

Description

Description:
Returns the target of the object airplane or helicopter pilotCamera tracking.
Groups:
Uncategorised

Syntax

Syntax:
getPilotCameraTarget object
Parameters:
object: Object
Return Value:
Array - [isTracking, targetPosition, targetObject]; returns [false,[0,0,0],<NULL-object>] if camera is not in a tracking mode or if object has no pilotCamera.
  • isTracking: Boolean - returns whether the camera is in a tracking mode
  • targetPosition: Array - format PositionASL, returns the position of the tracked area or object
  • targetObject: Object - returns the tracked object, objNull if camera is only tracking an area

Examples

Example 1:
_pilotCamTrack = (getPilotCameraTarget vehicle player) select 0; _pilotCamTargetPos = (getPilotCameraTarget vehicle player) select 1; _pilotCamTarget = (getPilotCameraTarget vehicle player) select 2;

Additional Information

See also:
hasPilotCameragetPilotCameraPositiongetPilotCameraDirectiongetPilotCameraRotationsetPilotCameraDirectionsetPilotCameraRotationsetPilotCameraTarget

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

Notes

Bottom Section