Search the Community
Showing results for tags 'param'.
-
is there a way that i can link a ramp to another? like right click copy parameter->paste relative reference i am doing ramp_parm_1.set(ramp_parm_2) in python, with python it only link the amount of ponits, but doesnt link the value or position of each point =( is there a special way to link ramps? thanks. link_ramps_python.hipnc
-
I am using the following code to change the scale parameter in a geometry node: { s = @scale; if (s < 1) { if ($FF >= ch("/obj/CONTROLS/Start_Frame_HV")) { s = s + .25; } } return s; } I am able to grab the value, evaluate it, add .25 to it, and it is reflected on the desired frame. However, after the very first time, it will not add to it and it stays at .25 until scene completion. I have tried referencing it via the ch("...") function but it always comes back with a recursion too deep error. Up until it hits the desired frame, which is 24, the value remains at the desired value of 0. Then at frame 24 it is set to .25, so this tells me that this script is evaluated at every frame, or am I missing something? I am able to increment it from 0 to .25 at frame 24, but nothing after that. Any guidance would be much appreciated