WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   viz.Screen Images overlap and Interface Button (https://forum.worldviz.com/showthread.php?t=2237)

jaylocco 08-26-2009 07:46 PM

viz.Screen Images overlap and Interface Button
 
1 Attachment(s)
Hi,

I created an interface that stick to the screen by using TexQuad and viz.Screen. The interface resemble a video player that can play video. Since the interface would be overlapping with the video, what I did was, I initialized the interface first then the video, and these enabled the video to be displayed in front the interface. The problem is, when I applied the alpha to the interface, why did the video's opacity was affected as well? here is the sample code..

Code:

#the player interface
intface = viz.add('videoPlayer.jpg')
vidPlayer = viz.addTexQuad(parent=viz.SCREEN,pos=(0.5,0.5,0.1))
vidPlayer.alpha(0.75) 
vidPlayer.setScale([12,6,0])
vidPlayer.texture(intface)

#the video
vid = viz.addVideo('vizard.mpg',loop=1,play=1)
movie = viz.addTexQuad(parent=viz.SCREEN,pos=(0.5,0.52,0))
movie.setScale([4,4,0])
movie.texture(vid)

Attached together is the interface jpg file for your ease..

Another matter is, I was wondering, how do I create the button for this Player? Is it by creating another image,a Close button for instant, translate it to the desired location, and apply the 'vizact.onpick' function. Or do you have any better solution?

Thanks

farshizzo 08-28-2009 03:18 PM

Try giving the video quad a very high draw order. This should force it to render after the interface:
Code:

movie.drawOrder(100)
If your entire interface is a single texture, then you will need to handle mouse button events and check if the mouse is clicked on certain interface features. Using this method will require you to hard code where the position of each object is on screen.


All times are GMT -7. The time now is 08:39 AM.

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