mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
12 lines
205 B
Plaintext
12 lines
205 B
Plaintext
// by commy2
|
|
#include "script_component.hpp"
|
|
|
|
private ["_min", "_max"];
|
|
|
|
PARAMS_2(_array,_value);
|
|
|
|
_min = _array select floor _value;
|
|
_max = _array select ceil _value;
|
|
|
|
_min + (_max - _min) * (_value % 1)
|