View Single Post
  #2  
Old 07-17-2015, 06:27 AM
gerardo697 gerardo697 is offline
Member
 
Join Date: May 2015
Posts: 10
One way to do this

I found out that the following works with any kind of picture extension.

pic = viz.addTexture( '20150716_113030.jpg' )
quad = viz.addTexQuad()
quad.setPosition([x,z,y])
quad.setSize([width,height])
quad.setEuler([270,0,0])
quad.texture(pic)


The setEuler() part is if you want to turn the picture around.
Reply With Quote