WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   GUI Image? (https://forum.worldviz.com/showthread.php?t=1053)

codexter 04-19-2007 12:52 PM

GUI Image?
 
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:
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.


All times are GMT -7. The time now is 01:49 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC