I have an array of floats and I need to get the nearest float in that array compared to another float variable. For example:
Float Array
1.46
3.67
4.68
7.78
8.54
My Float Variable is: 3.56
Answer is: 3.67 (the array)
How can I implement this with playmaker that is simple? Thanks