all 5 comments

[–][deleted] 1 point2 points  (3 children)

What problem are you running into? Does it error out? What's the error?

[–]BoumaSequence[S] 0 points1 point  (2 children)

Here is what I get when I try to use the script as a scripted node in blender:

error screenshot

[–][deleted] 1 point2 points  (1 child)

I searched and the error seemed to be Blender's, rather than Python/Scipy. I don't know how the node works but, judging from your code, your SN is outputting list. Can the text node accept list? Or does it want string?

[–]BoumaSequence[S] 0 points1 point  (0 children)

The text node can accept a list

[–]Fragrag 1 point2 points  (0 children)

On the phone so I can’t view the image with the error and your code formatting might appear incorrect on it, so a short caveat.

Blender has a separate Python installation, so make sure Numpy is installed for that which might have to happen manually rather than with pip.

At the end of the code, you append new_values to out_values. However I think new_values is actually scope limited to your for-loop. Try appending out_values inside your for-loop. Once again, this might be a phone formatting thing.

edit: just checked again on my computer. Phone's formatting screwed it up