#1
|
|||
|
|||
Best Way to set up wii cursors across 2 windows
Hello again,
I have been looking through the help file again and before I go and completely do this wrong I figured I'd ask you and see what your advice would be. I want to create a similar setup to the wiimote demo you provide in vizard, however I have split the screen into 2 windows, a top and bottom ( think split screen mode in games). I want the wiimote1 to pertain to the top and wiimote2 cursor on the bottom window. Right now, using the old code produces two cursors in both windows by writing directly to the screen. Do I have to set up two separate scenes to make this work? Or is there a better way? By setting up two scenes, do I have to manually change each characters coordinates across both, since from what I read in the help file about it one scene is independent from the other in terms of future changes. Thanks, George |
#2
|
|||
|
|||
Add the cursor objects to the viz.ORTHO layer. Each window has its own viz.ORTHO layer, which is similar to viz.SCREEN, except that position values are in pixel units, instead of normalized units. Here is some sample code:
Code:
#Add a pointer to the screen cursor = viz.add('arrow.tif') size = cursor.getSize() pointer1 = viz.addTexQuad(parent=viz.ORTHO,scene=window1,texture=cursor,scale=size) pointer2 = viz.addTexQuad(parent=viz.ORTHO,scene=window2,texture=cursor,scale=size) |
Thread Tools | |
Display Modes | Rate This Thread |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to show different objects on different windows from the same scene | Joran | Vizard | 3 | 07-14-2014 03:07 PM |
Picking in multiple windows | FalconNL | Vizard | 1 | 07-02-2007 09:45 AM |
windows 64 bit | asimbh | Vizard | 2 | 05-21-2007 05:55 PM |
known windows firewall issue | mspusch | Vizard | 0 | 06-01-2006 09:47 AM |
Windows within windows | VAmanda | Vizard | 5 | 10-31-2005 12:16 AM |