PDA

View Full Version : <node>.unlink will be deprecated in future versions of Vizard?!


Josh
03-20-2010, 07:19 AM
Hi all

I added the following code from the help tutorial to my script:


morphing_face = avatar.face('male.vzf')

Now I'm getting the following message:

** WARNING: <node>.unlink will be deprecated in future versions of Vizard, use viz.link instead

What should I do?

Thanks
Josh

Jeff
03-22-2010, 10:36 AM
Somewhere in the code a <node>.unlink method is called which should be replaced with viz.link.
link = viz.link(hand,ball)
.
.
.
link.remove()

farshizzo
03-22-2010, 10:46 AM
That warning message is a mistake and will be fixed in the next release. You can just ignore it.