WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #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
 

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:43 PM.


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