- Edited
I have a "Curve" and would like to sample it with a value between 0 to 1, but sometimes I want my sample number to be higher than 1 (1.2 in this case). However it seems that using any number higher than 1 to sample a curve only returns the curve's Y value number at position 1. Is it not possible to extrapolate on a curve like this?
e.g.
@export var curve: Curve
var sample_value = 1.2
var returned_value = curve.sample(sample_value)