WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 10-03-2004, 06:12 PM
vcarlson vcarlson is offline
Member
 
Join Date: Sep 2004
Posts: 1
Question PROBLEM: Picture-in-Picture breaks textures?!?

I am implementing a picture-in-picture view where the main view is what the user sees and a small windown in the corner shows an outside view of the user's avatar. The apprearence of the outside window is triggered by a keyboard callback like so:

Code:
def mykeyboard(button):
  global cheat, PinP # initialized as PinP = viz.add(viz.WINDOW)
  if button is ' ':       #space on keyboard toggles PinP window
    if cheat == 0:
      cheat = 1
      PinP.visible(viz.ON)
    else:
      cheat = 0
      PinP.visible(viz.OFF)
The script runs without a problem (the PinP window is invisible at the beginning) undil the spacebar is pressed when all the textures go crazy (smearing, no detail, rectangular surfaces break in to two triangular polys), but textures on avatar faces remain normal!


is there somehting like a viz.REDRAW command, or some other way to solve this problem?

Note: after the textures are broken, toggling the extra window ON and OFF does not fix the texture problem.
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 01:57 AM.


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