WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 08-26-2009, 07:46 PM
jaylocco jaylocco is offline
Member
 
Join Date: Jun 2009
Posts: 19
Cool viz.Screen Images overlap and Interface Button

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
Attached Thumbnails
Click image for larger version

Name:	videoPlayer.jpg
Views:	1503
Size:	103.8 KB
ID:	341  
Reply With Quote
 

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 09:18 AM.


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