BIS fnc interpolateConstant: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{Function|= Comments | arma3 |Game name= |1.78|Game version= <!---|arg= local |Multiplayer Arguments=---> <!---|eff= local |Multiplayer Effects=---> | <pre>/* Author:...")
 
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *T([a-z ])" to "$1 - t$2")
 
(22 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Function|= Comments
{{RV|type=function


| arma3 |Game name=
|game1= arma3
|version1= 1.78


|1.78|Game version=
|gr1= Interpolation


<!---|arg= local |Multiplayer Arguments=--->
|descr= Interpolates scalar to target linearly.


<!---|eff= local |Multiplayer Effects=--->
|s1= [currentValue, targetValue, delta, interpSpeed] call [[BIS_fnc_interpolateConstant]]


| <pre>/*
|p1= currentValue: [[Number]] - the current value
Author:
Nelson Duarte


Description:
|p2= targetValue: [[Number]] - the target value
Interpolates scalar to target, linearly


Parameters:
|p3= delta: [[Number]] - (Optional, default 0) the delta time
_this: ARRAY
0: SCALAR - The current value
1: SCALAR - The target value
2: SCALAR - The delta time
3: SCALAR - The interpolation speed


Returns:
|p4= interpSpeed: [[Number]] - (Optional, default 0) the interpolation speed
SCALAR
*/</pre>{{Informative|Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]]}} |Description=


|[] call [[BIS_fnc_interpolateConstant]]|Syntax=
|r1= [[Number]] - the interpolated value


|p1= parameter: Datatype - (Optional, default defValue) description |Parameter 1=
|x1= <sqf>private _value = [4,8,0.2,0.1] call BIS_fnc_interpolateConstant;</sqf>


|Datatype - description|Return value=
|seealso= [[BIS_fnc_interpolate]] [[BIS_fnc_interpolateVector]] [[BIS_fnc_interpolateVectorConstant]]
 
|x1= <code></code>|Example 1=
 
|exec= call |Execution=
 
| |See also=
}}
}}
[[Category:Function Group: Interp|{{uc:interpolateConstant}}]]
[[Category:Functions|{{uc:interpolateConstant}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:interpolateConstant}}]]

Latest revision as of 16:50, 8 November 2023

Hover & click on the images for description

Description

Description:
Interpolates scalar to target linearly.
Execution:
call
Groups:
Interpolation

Syntax

Syntax:
[currentValue, targetValue, delta, interpSpeed] call BIS_fnc_interpolateConstant
Parameters:
currentValue: Number - the current value
targetValue: Number - the target value
delta: Number - (Optional, default 0) the delta time
interpSpeed: Number - (Optional, default 0) the interpolation speed
Return Value:
Number - the interpolated value

Examples

Example 1:
private _value = [4,8,0.2,0.1] call BIS_fnc_interpolateConstant;

Additional Information

See also:
BIS_fnc_interpolate BIS_fnc_interpolateVector BIS_fnc_interpolateVectorConstant

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