Notifications
Clear all
[Closed] assign noise_float to float_list
Apr 09, 2008 3:28 am
I’m a bit new to scripting. I am trying to do this:
$.Position.controller.Z_Position.controller.available = noise_float();
The Z_position is a float list. It appears that .available’s type is Float, so when I try assign a noise_float there, I get
Unable to convert: Controller:Noise_Float to type: Float
However it is of course perfectly possible to put a noise float in a float list if you do it through the Max interface.
Ideas?
1 Reply
Apr 09, 2008 3:28 am
And, I just figured it out. It needs to be
$.Position.controller.Z_Position.controller.available.controller = noise_float();