WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 08-29-2018, 08:46 AM
jwhopkin jwhopkin is offline
Member
 
Join Date: Jul 2018
Posts: 5
Unhappy Node3D Objects in GUI Panels

Hi,

I am trying to add Node3D objects to vizdlg panels and am experiencing some difficulty. The objects are set to spin in the panel. However, after rotating a certain amount, the objects seem to be culled from the panel and fail to be rendered. So, the object completes most of its spin, disappears for a few seconds, and reappears later. I have tried enabling depth testing, disabling culling and nothing seems to help. Is this a clipping plane issue, or a culling issue? Any help is much appreciated, thank you.
Reply With Quote
  #2  
Old 09-01-2018, 12:55 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
The following code shows how to add a spinning model to a panel. Let us know if this helps to resolve the issue with your own code:

Code:
import viz
import vizinfo
import vizact
import vizdlg

viz.go()
viz.addChild('piazza.osgb')
avatarPanel = vizinfo.InfoPanel('Avatar Panel',align=viz.ALIGN_LEFT_BOTTOM,fontSize=22,icon=False)
avatarFiles = ['vcc_male.cfg','vcc_female.cfg','vcc_male2.cfg','pigeon.cfg']
    
for i,filename in enumerate(avatarFiles):
    
    if i == 3:
        scale = [130] * 3
    else:
        scale = [45] * 3
        
    avatar = viz.addAvatar(filename,scale=scale,euler=[i*90,0,0])
    avatar.addAction(vizact.spin(0,1,0,45))
    avatar.enable(viz.DEPTH_TEST,op=viz.OP_ROOT)
    avatar.state(1)
    subPanel = vizdlg.Panel(layout = vizdlg.LAYOUT_VERT_CENTER, border= False)
    subPanel.setMinSize([100,0])
    subPanel.addItem(avatar)
    avatarPanel.addItem(subPanel,align=viz.ALIGN_CENTER)
Reply With Quote
  #3  
Old 09-07-2018, 08:59 AM
jwhopkin jwhopkin is offline
Member
 
Join Date: Jul 2018
Posts: 5
Thank you! I did not end up using this code but it was still very useful. My problem was the different nodes in the panel were children from another model. I ended up switching the exact child node and got it working fine.
Reply With Quote
Reply

Tags
gui, node3d, panel, vizdlg

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
limiting sepia post-process effect to selected node3d objects pitbool Vizard 2 02-23-2016 03:05 PM
Trouble picking text3d objects Salvar Vizard 4 12-01-2010 03:07 PM
Iterate through node3d children migoloco Vizard 2 09-22-2010 03:43 PM
Semi-circle array containing target and distractor objects ptjt255 Vizard 3 08-04-2009 03:09 AM
Could not find plugin to load objects... halley Vizard 1 05-30-2006 11:01 AM


All times are GMT -7. The time now is 06:50 AM.


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