View Single Post
  #2  
Old 06-24-2003, 01:31 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

The current VRML loader doesn't support all VRML 2.0 features, and Text is one of them. You can add a text object manually though:

text = viz.add(viz.TEXT3D,'View 1')
text.color(1.0,0.2,0.2)


To dynamically change the text message:

text.message('new value')

Plus all the transformation operations work on the text object, such as translation, rotation, and scale.

-- Farshid
Reply With Quote