BIS fnc easeIn: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Added desc, examples, parameters, returns, see also)
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *I([a-z ])" to "$1 - i$2")
 
(20 intermediate revisions by 2 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= Wraps [[BIS_fnc_lerp]].


<!---|eff= local |Multiplayer Effects=--->
|s1= [a, b, alpha, exp] call [[BIS_fnc_easeIn]]


| Wraps [[BIS_fnc_lerp]]. |Description=
|p1= a: [[Number]] - (Optional, default 0) first point (start)


|[a, b, alpha, exp] call [[BIS_fnc_easeIn]]|Syntax=
|p2= b: [[Number]] - (Optional, default 0) second point (end)


|p1= a: [[Number]] - (Optional, default 0) First point (start) |= Parameter 1
|p3= alpha: [[Number]] - (Optional, default 0) original interpolation speed
|p2= b: [[Number]] - (Optional, default 0) Second point (end) |= Parameter 2
|p3= alpha: [[Number]] - (Optional, default 0) Original interpolation speed |= Parameter 3
|p4= exp: [[Number]] - (Optional, default 2) Power applied to alpha |Parameter 4=


|[[Number]] - Interpolated value|Return value=
|p4= exp: [[Number]] - (Optional, default 2) power applied to alpha


|x1= <code>[] [[call]] BIS_fnc_easeIn; {{codecomment|// Returns 0}}</code>|Example 1=
|r1= [[Number]] - interpolated value
|x2= <code>[0, 2, 0.5] [[call]] BIS_fnc_easeIn; {{codecomment|// Returns 0.5}}</code>|Example 2=
|x3= <code>([0, 2, 0.5] [[call]] [[BIS_fnc_lerp]]) [[a == b|==]] ([0, 2, 0.5, 1] [[call]] BIS_fnc_easeIn) {{codecomment|// Returns [[true]]}}</code>|Example 3=


|exec= call |Execution=
|x1= <sqf>[] call BIS_fnc_easeIn; // returns 0</sqf>


| [[BIS_fnc_lerp]], [[:Category:Function Group: Interp]] |See also=
|x2= <sqf>[0, 2, 0.5] call BIS_fnc_easeIn; // returns 0.5</sqf>
 
|x3= <sqf>([0, 2, 0.5] call BIS_fnc_lerp) == ([0, 2, 0.5, 1] call BIS_fnc_easeIn); // returns true</sqf>
 
|seealso= [[BIS_fnc_lerp]] [[:Category:Function Group: Interpolation|Function Group: Interpolation]]
}}
}}
[[Category:Function Group: Interp|{{uc:easeIn}}]]
[[Category:Functions|{{uc:easeIn}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:easeIn}}]]

Latest revision as of 16:33, 8 November 2023

Hover & click on the images for description

Description

Description:
Wraps BIS_fnc_lerp.
Execution:
call
Groups:
Interpolation

Syntax

Syntax:
[a, b, alpha, exp] call BIS_fnc_easeIn
Parameters:
a: Number - (Optional, default 0) first point (start)
b: Number - (Optional, default 0) second point (end)
alpha: Number - (Optional, default 0) original interpolation speed
exp: Number - (Optional, default 2) power applied to alpha
Return Value:
Number - interpolated value

Examples

Example 1:
[] call BIS_fnc_easeIn; // returns 0
Example 2:
[0, 2, 0.5] call BIS_fnc_easeIn; // returns 0.5
Example 3:
([0, 2, 0.5] call BIS_fnc_lerp) == ([0, 2, 0.5, 1] call BIS_fnc_easeIn); // returns true

Additional Information

See also:
BIS_fnc_lerp Function Group: Interpolation

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