View Single Post
  #5  
Old 08-29-2016, 05:10 AM
istarion istarion is offline
Member
 
Join Date: Aug 2016
Posts: 13
Removing the text is a simple call to remove if you don't need this Text instance again:
Code:
#display text
Text=viz.addText3D('Hello world', pos,color .....)

#remove text
Text.remove()
If you want to hide/show the same text multiple times us this:
Code:
#create/display text
Text=viz.addText3D('Hello world', pos,color .....)

#toggle visibility with these
Text.visible(viz.OFF)
Text.visible(viz.ON)
Reply With Quote