BIS fnc camFollow: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Function|Comments=
{{Function|Comments=
____________________________________________________________________________________________


| tkoh |Game name=
| tkoh |Game name=
Line 7: Line 6:


|gr1= Camera |GROUP1=
|gr1= Camera |GROUP1=
____________________________________________________________________________________________


| Refresh a camera Field of View according to its distance with the target. |Description=
| Refresh a camera Field of View according to its distance with the target. |Description=
____________________________________________________________________________________________


| [camera, target, refreshTime] call [[BIS_fnc_camFollow]] |Syntax=
| [camera, target, refreshTime] call [[BIS_fnc_camFollow]] |Syntax=
Line 21: Line 18:


| [[Nothing]] |Return value=
| [[Nothing]] |Return value=
____________________________________________________________________________________________


|x1= <code>_camera = "camera" [[camCreate]] (([[getPos]] [[player]]) [[vectorAdd]] [0,0,3]);
|x1= <code>_camera = "camera" [[camCreate]] (([[getPos]] [[player]]) [[vectorAdd]] [0,0,3]);
[_camera, [[player]], -2] [[call]] [[BIS_fnc_camFollow]];</code> |Example 1=
[_camera, [[player]], -2] [[call]] [[BIS_fnc_camFollow]];</code> |Example 1=
____________________________________________________________________________________________


| [[:Category:Command Group: Camera Control|Camera commands]] ||See also=
| [[:Category:Command Group: Camera Control|Camera commands]] ||See also=

Revision as of 23:40, 16 January 2021

Hover & click on the images for description

Description

Description:
Refresh a camera Field of View according to its distance with the target.
Execution:
call
Groups:
Camera

Syntax

Syntax:
[camera, target, refreshTime] call BIS_fnc_camFollow
Parameters:
camera: Object
target: Object or Position
refreshTime: Number - (Optional, default 1) transition time in seconds. If refreshTime is positive, a refresh happens only once. if refreshTime is negative, the refresh will loop (with a transition time of absolute refreshTime) until camera is null
Return Value:
Nothing

Examples

Example 1:
_camera = "camera" camCreate ((getPos player) vectorAdd [0,0,3]); [_camera, player, -2] call BIS_fnc_camFollow;

Additional Information

See also:
Camera commands

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