oimo1979

oimo1979

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Visualize Arrays Dec. 3, 2023, 1:38 a.m.

I also encountered the same problem and ended up here. It didn't seem possible to display the array by default, but I was able to resolve this by converting it to a String for display.
The problem with the Visualize Properties SOP causing the same thing to appear twice can be resolved by turning off Parameters > Update Visualizers.
string s_patches[];
foreach (int patch; i[]@patches)  // e.g. i[]@patches = {5, 6, 7}
    push(s_patches, itoa(patch));
s@s_patches = '[' + join(s_patches, ' ') + ']';