I'm trying to get the float value that should be coming out of the float curve node. However, no matter what I try, it always gives me a 0. You can see here what my code says and the incorrect output. The value should be like .9 , but it's not.
import bpy
print(bpy.data.node_groups["plant"].nodes["Float Curve"].outputs[0].default_value)



