#1
|
|||
|
|||
screen image
we want to create an image that attaches to the screen, much like the GUI features of screentext and the slider, but use an image file instead. we haven't found a way to go outside of the options in the vizard GUI for adding screen elements.
basically, we would like to add a top-down view of the environment, but the bird-eye view function is only adding it to one eye of the screen (we want to use stereo view), and we really only want to add a basic image of the environment (which we have separately), which does not necessarily include all of the objects in the environment. thanks for your help! |
#2
|
|||
|
|||
The following code will add a textured quad to the upper left corner of the screen. Is this what you are needing?
Code:
import viz viz.go(viz.STEREO) texture = viz.add('ball.jpg') quad = viz.addTexQuad(viz.SCREEN,align=viz.TEXT_LEFT_TOP,pos=(0,1,0)) quad.texture(texture) |
#3
|
|||
|
|||
thanks, that's perfect.
|
#4
|
|||
|
|||
is it possible to scale the texQuad as a percentage of the screen size? we'd like to have it at 20% of the screen, no matter what the size or resolution of the image we are putting in the texQuad.
thanks. |
#5
|
|||
|
|||
we tried doing something like this to set the scale, but that just multiplied it by the size of the image, not the size of the screen. The position does seen to be a function of the screen size, however:
Code:
mapPos = [0.1,0.1,0] mapScale = [8,8,8] map = viz.addTexQuad(viz.SCREEN, align = viz.TEXT_LEFT_TOP, pos=mapPos, scale =mapScale) |
#6
|
|||
|
|||
The following code will scale the quad to 20% of the window size:
Code:
p = 0.2 quad.setScale([12.8*p,10.24*p,1]) |
#7
|
|||
|
|||
that worked great. one more question about texQuad stuff...if we want to have two texQuads layered, how can we get one of them to appear on top of the other one?
|
#8
|
|||
|
|||
Just add a second quad, and it will appear over the existing one. You can use the node.drawOrder() command to manually control the order in which the quads are rendered.
|
#9
|
|||
|
|||
thanks, that worked
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
View an image on the Fakespace HMD | roman_suvorov | Vizard | 16 | 05-23-2008 08:51 AM |
position of html-file on screen | active_world | Vizard | 1 | 05-16-2008 08:24 PM |
GUI Image? | codexter | Vizard | 2 | 04-19-2007 02:45 PM |
Only part of tiled image | vizmaster | Vizard | 5 | 09-11-2006 01:11 PM |
accessing screen buffer | hotspur1 | Vizard | 3 | 08-22-2003 04:31 PM |