ZBrushCentral

Varlist item to variable not working

Not sure if im doing something wrong but i noticed you cant put a varlist item directly in a variable?

[VarDef, varList(2), “”]
[VarSet, varList(0), “item1”]
[VarSet, varList(1), “item2”]

[Note, varList(0)]
[VarSet, testVar, varList(0)]
[Note, testVar]

Note 1 will return item1
Note2 will return 0

the only way to fix this is to do a stringmerge

[VarSet, testVar, [StrMerge,"",VarList(0)]]`