Log in

View Full Version : Black Background


Alex Miranda
04-02-2014, 12:08 PM
Hello, i've created two windows to view my scene. I would like to turn black the main window and show the two windows. My code is:

import viz

viz.go(viz.FULLSCREEN)
maze = viz.addChild('maze.osgb')

upLeftWindow = viz.addWindow()
upLeftWindowView = viz.addView()
upLeftWindow.setView(upLeftWindowView)
upLeftWindow.setPosition([0.566,0.91])
upLeftWindow.setSize(0.405, 1)

upLeftWindowViewLink = viz.link( viz.MainView, upLeftWindowView )
upLeftWindowViewLink.preEuler([0, 0, 0])
upLeftWindowViewLink.postTrans([0, 0, 0])

upRightWindow = viz.addWindow()
upRightWindowView = viz.addView()
upRightWindow.setView(upRightWindowView)
upRightWindow.setPosition([0.032,0.993])
upRightWindow.setSize(0.436,0.93)

upRightWindowviewLink = viz.link( viz.MainView, upRightWindowView )
upRightWindowviewLink.preEuler([0, 0, 0])
upRightWindowviewLink.postTrans([0, 0, 0])

thks.

Jeff
04-04-2014, 12:00 AM
The following line of code will prevent the model from being rendered to the main window:
maze.renderToAllWindowsExcept([viz.MainWindow])

Alex Miranda
04-09-2014, 08:13 AM
THANKS!

It's running.