![]() |
|
#4
|
|||
|
|||
|
You can add a fullscreen quad to the background scene using the following code:
Code:
#Add background window
texture = viz.add('ball.jpg')
back_scene = viz.addScene()
quad = viz.addTexQuad(viz.SCREEN,scene=back_scene,scale=(12.8,10.24,0),pos=(0.5,0.5,0))
quad.texture(texture)
background = viz.addWindow(pos=[0,1],size=[1,1])
background.setView(view=viz.addView(scene=back_scene))
background.drawOrder(-10)
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Publish as EXE - Introduction | tobin | Vizard | 19 | 02-12-2009 03:51 AM |
| Vizard file save as .exe urgent!!! | tacbob | Vizard | 2 | 05-10-2007 02:05 AM |