getPilotCameraTarget: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\{\{GameCategory\|(arma[0123])\|[ _]?New[ _]Scripting[ _]Commands[ _]List\}\}" to "{{GameCategory|$1|New Scripting Commands}}") |
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
||
Line 1: | Line 1: | ||
{{Command|Comments= | {{Command|Comments= | ||
|arma3|Game name= | |arma3|Game name= | ||
Line 9: | Line 8: | ||
|gr1= Pilot Camera |GROUP1= | |gr1= Pilot Camera |GROUP1= | ||
| Returns the target of the object airplane or helicopter [[A3_Targeting_config_reference#class_pilotCamera|pilotCamera]] tracking. |DESCRIPTION= | | Returns the target of the object airplane or helicopter [[A3_Targeting_config_reference#class_pilotCamera|pilotCamera]] tracking. |DESCRIPTION= | ||
| '''getPilotCameraTarget''' object |SYNTAX= | | '''getPilotCameraTarget''' object |SYNTAX= | ||
Line 22: | Line 19: | ||
* 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 | ||
|RETURNVALUE= | |RETURNVALUE= | ||
|x1 = <code>_pilotCamTrack = ('''getPilotCameraTarget''' [[vehicle]] [[player]]) [[select]] 0; | |x1 = <code>_pilotCamTrack = ('''getPilotCameraTarget''' [[vehicle]] [[player]]) [[select]] 0; | ||
_pilotCamTargetPos = ('''getPilotCameraTarget''' [[vehicle]] [[player]]) [[select]] 1; | _pilotCamTargetPos = ('''getPilotCameraTarget''' [[vehicle]] [[player]]) [[select]] 1; | ||
_pilotCamTarget = ('''getPilotCameraTarget''' [[vehicle]] [[player]]) [[select]] 2; | _pilotCamTarget = ('''getPilotCameraTarget''' [[vehicle]] [[player]]) [[select]] 2; | ||
</code> |EXAMPLE1= | </code> |EXAMPLE1= | ||
| [[hasPilotCamera]], [[getPilotCameraPosition]], [[getPilotCameraDirection]], [[getPilotCameraRotation]], [[setPilotCameraDirection]], [[setPilotCameraRotation]], [[setPilotCameraTarget]] |SEEALSO= | | [[hasPilotCamera]], [[getPilotCameraPosition]], [[getPilotCameraDirection]], [[getPilotCameraRotation]], [[setPilotCameraDirection]], [[setPilotCameraRotation]], [[setPilotCameraTarget]] |SEEALSO= | ||
Revision as of 01:39, 17 January 2021
Description
- Description:
- Returns the target of the object airplane or helicopter pilotCamera tracking.
- Groups:
- Pilot Camera
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