"
float range_lerp ( float value, float istart, float istop, float ostart, float ostop )
Maps a value from range [istart, istop] to [ostart, ostop].
range_lerp(75, 0, 100, -1, 1) # Returns 0.5"
this is given in the gdscript reference but shouldnt the range-lerp return 0.75?
thanks