View Single Post
  #3  
Old 04-03-2008, 10:21 AM
Elittdogg Elittdogg is offline
Member
 
Join Date: Aug 2007
Posts: 77
Another point of interest:

I tried just creating a blank script with the letters and here's what I have:

import viz
viz.go()

A = viz.add(viz.TEXT3D,'A', viz.RELATIVE_LOCAL)
A.translate(.17,.985,4.2)
A.color(1,0,0)
A.scale(.2, .2, 2)

H = viz.add(viz.TEXT3D,'H', viz.RELATIVE_LOCAL)
H.translate(0,.95,4.2)
H.color(0,0,1)
H.scale(.2, .2, 2)

I = viz.add(viz.TEXT3D, 'I', viz.RELATIVE_LOCAL)
I.translate(0,.80,4.2)
I.color(0,1,0)
I.scale(.2,.2,.2)

Now in this case, I can get H and A to appear but not I. And I've added others like Q and R and they won't appear either. Is there some limit to how many I can add? And if this is true then why in my actual script (where I need the letters to appear) won't A or H or I appear at all!!??? What's going on?
Reply With Quote