WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   vizard marker visible (https://forum.worldviz.com/showthread.php?t=3706)

xcuddlex 04-11-2011 06:59 AM

vizard marker visible
 
i know this code is to display avatar only when the marker is shown
import viz
viz.go()

#Add ARToolkit extension
ar = viz.add('artoolkit.dle')

#Create camera using first available webcam
camera = ar.addWebCamera()

#Create matrix marker
marker = camera.addMatrixMarker(0,width=1000)

#Add avatar model and set state 1
avatar = viz.add('vcc_male.cfg')
avatar.state(1)

#Link avatar model to marker sensor
viz.link(marker,avatar)

#Method that update if the marker is visible
def updateVisible():
if marker.getVisible():
avatar.visible(viz.ON)
else:
avatar.visible(viz.OFF)

vizact.ontimer(0,updateVisible)


but what if i have multiple avatar? i want to display avatar1 only when marker1 is shown to the camera? and avatar2 only when marker2 is shown and so on. python does not have switch statement right? please help ! :(

Jeff 04-11-2011 04:52 PM

You could use multiple if statements in the updateVisible function.

xcuddlex 04-18-2011 01:54 AM

def updateVisible():
if marker.getVisible():
marker1.visible(viz.ON)
elif
marker2.visible(viz.ON)
else:
avatar.visible(viz.OFF)

this doesnt work
i got an error and it wont run :(
is the syntax wrong ? i'm not familiar with python


All times are GMT -7. The time now is 02:46 PM.

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