Expression syntax to get the Slope of a Spline
I only just noticed that when you hover a certain point on a spline, Fusion tells me the slope in the bottom left corner, just like it does a Parameter's name when I hover it.
Is it possible to get that value on a frame basis to use in an expression?
The only way I knew how was to use
So can we get the slope of a curve with an expression or not? Since Fusion already calculates it, it should be such an easy implementation
Hope version 18 randomly blesses us with such ease
Is it possible to get that value on a frame basis to use in an expression?
The only way I knew how was to use
- Code: Select all
Node:GetValue("Parameter",time) - Node:GetValue("Parameter",time - 1)
So can we get the slope of a curve with an expression or not? Since Fusion already calculates it, it should be such an easy implementation