![]() |
|
#1
|
|||
|
|||
1) You can publish your script to an EXE by selecting File -> Publish as EXE from the menu. Just follow the on screen instructions from there.
2) Here is some code that will resize the main window so the second window does not cover it up. I also added a background window that will fill up the rest of the empty space in the window. Code:
#Add window to top top_view = viz.addView() top_view.setPosition([0,10,0]) top_view.setEuler([0,90,0]) top_window = viz.addWindow(pos=(0,1),size=(0.2,0.2),view=top_view) #Reduce size of main window viz.MainWindow.setSize([0.8,1]) viz.MainWindow.setPosition([0.2,1]) #Add background window background = viz.addWindow(pos=[0,1],size=[1,1]) background.setView(view=viz.addView(scene=viz.addScene())) background.drawOrder(-10) |
#2
|
|||
|
|||
thanks a lot farshizzo,..
![]() now i get resize the main window.. ![]() but when i add script for background window,nothing has change?? how can i add background to fill up the rest of the empty space of the window? (example for add image) |
#3
|
|||
|
|||
You can add a fullscreen quad to the background scene using the following code:
Code:
#Add background window texture = viz.add('ball.jpg') back_scene = viz.addScene() quad = viz.addTexQuad(viz.SCREEN,scene=back_scene,scale=(12.8,10.24,0),pos=(0.5,0.5,0)) quad.texture(texture) background = viz.addWindow(pos=[0,1],size=[1,1]) background.setView(view=viz.addView(scene=back_scene)) background.drawOrder(-10) |
![]() |
Thread Tools | |
Display Modes | Rate This Thread |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Publish as EXE - Introduction | tobin | Vizard | 19 | 02-12-2009 02:51 AM |
Vizard file save as .exe urgent!!! | tacbob | Vizard | 2 | 05-10-2007 01:05 AM |