#1
|
|||
|
|||
Changing the monitor / TV view from Stereoscopic?
Is there any way to make the monitor view one eye? or make it mono like a conventional screen? The request was made by some viewing this to have it a conventional view when we are using a HMD, we want to be able to see the monitor, or TV as a mono view.
Any help is appreciated. Thanks |
#2
|
|||
|
|||
Which HMD are you using?
|
#3
|
|||
|
|||
We have HTC Vive and want to display that normally. We have a monitor we want to display in mono
Thanks |
#4
|
|||
|
|||
Add the following lines of code in either the postInit section of your vizconnect file or in your application script:
Code:
hmd = steamvr.getExtension().getHMDList()[0] hmd.setMonoMirror(viz.ON) |
#5
|
|||
|
|||
Jeff - I ran the code you suggested in the application and get this error :
Quote:
|
#6
|
|||
|
|||
Make sure you have the latest version of Vizard 5 by going to Help > Check for Updates. Then try adding the following code in the postInit section of the vizconnect file:
Code:
import steamvr hmd = steamvr.getExtension().getHMDList()[0] hmd.setMonoMirror(True) |
#7
|
|||
|
|||
I cannot find any file named only vizconnect. I apologize as im completely new to this.
Looked for any extension but to no avail. I tried the vizconnect_config file as well as the vizconnect_config_steamvr files but to no avail. Thanks again for the help Jeff. |
#8
|
|||
|
|||
The vizconnect introduction and tutorials are a good place to start for learning vizconnect.
Try running the attached vizconnect file. This was created with the vive preset option in vizconnect and then modified by adding the mono mirror code to the postInit section. |
#9
|
|||
|
|||
Thanks - I'm reading them now. I appreciate all the help. I've been slowly gaining ground in this through no small part to your efforts - Thanks again!
I've inserted your vizconnect file, and added into my code : vizconnect.go('vizconnect_config_vive') I get this error : Quote:
|
#10
|
|||
|
|||
What version of Vizard 5 are you running, is it 5.7? You can check by going to Help > About Vizard.
|
#11
|
|||
|
|||
5.7 correct
|
#12
|
|||
|
|||
Try running the following code on it's own. Does this work?
Code:
import viz viz.go() import steamvr hmd = steamvr.HMD() hmd.setMonoMirror(True) viz.link(hmd.getSensor(), viz.MainView) viz.add('dojo.osgb') |
#13
|
|||
|
|||
Yes that code works.
I imported that into my current file and the window appears mono. I however am stuck in the loaded position and when I attempt to navigate the hands move away from me and the HMD display is stuck in the position the file opens. Thanks for your ongoing support. It's clear I have alot to learn and your help has been invaluable. |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
animation path problem - coordinates not resetting | jelly | Vizard | 7 | 04-26-2016 11:45 AM |
Stereoscopic view question | atamasan | Vizard | 2 | 03-09-2010 10:13 PM |
View | nlfrnassimi | Vizard | 0 | 03-17-2009 03:01 AM |
View | nlfrnassimi | Vizard | 4 | 03-12-2009 06:25 AM |
problem with stereo mode | shivanangel | Vizard | 3 | 10-17-2006 10:58 AM |