ACE3/addons/common/functions/fnc_interpolateFromArray.sqf

13 lines
250 B
Plaintext
Raw Normal View History

// by commy2
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
private ["_array", "_value", "_min", "_max"];
_array = _this select 0;
_value = _this select 1;
_min = _array select floor _value;
_max = _array select ceil _value;
_min + (_max - _min) * (_value % 1)