[SOLVED]Get Objects Name
mattiascibien
Posts: 140
I have actually started to work on my plugin for DAZ Studio 4.5.
I need in fact to pass to a functions the name of the objects. The problem is that the name passed is the same even if i changed it (i.e. Genesis while I should have the name i provided in the Scene Tab).
I tried whith DzNode::getName(), DzObject::getName() but I always get the wrong name.
Post edited by mattiascibien on
Comments
You want the label, not the name - that's what shows in the Scene pane. Anything derived from DzObject should have a getLabel() function that returns a string.
Everything is working fine with getLabel().
Thanks :)