View Full Version : GUI Image?
codexter
04-19-2007, 12:52 PM
I'm working on creating a GUI splashcreen and am looking to include in image as part of the interactive interface. What is the best way to og about this? Since it's just a GUI, it's just a 2-D .jpg that I'm hoping to include on the screen. Can I add it as a window, or through a text info box?
Thanks.
farshizzo
04-19-2007, 01:20 PM
Hi,
If you just want to display a 2D image on screen then you can create a texture quad that takes up the entire window. Here is some sample code:tex = viz.add('ball.jpg',wrap=viz.CLAMP_TO_EDGE)
quad = viz.addTexQuad(parent=viz.SCREEN,scale=[12.8,10.24,1],pos=[0.5,0.5,0],texture=tex)
codexter
04-19-2007, 01:45 PM
Works perfectly. Thanks a bunch.
vBulletin® v3.8.7, Copyright ©2000-2025, vBulletin Solutions, Inc.