WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   Sound freezes Vizard simulation (https://forum.worldviz.com/showthread.php?t=6328)

nom nom 09-24-2020 11:25 AM

Sound freezes Vizard simulation
 
Hi,

After reinstalling my Windows, suddenly the sound play in Vizard causes a quick freezing of the simulation. This occurred in both VR and non-VR settings as well as my own code and the example code (I used the below code from the documentation). I use Vizard 5.

I checked the framerate. The framerate is at 75 Hz, then when the sound is played, it suddenly drops to about 20 Hz for a second then recovers back to 75 Hz. This interference from the sound only occurs in Vizard and not other programs, so I assume this is something related to Vizard.

Code:

import viz
import vizact

viz.setMultiSample(4)
viz.fov(60)
viz.go()

viz.clearcolor(viz.SKYBLUE)

#add localized sound
duck = viz.addAvatar( 'duck.cfg' )
duck.setEuler([180,0,0])
duckMove = vizact.sequence( [vizact.moveTo([0,1,22],speed=2), vizact.moveTo([0,1,0],speed=2)], viz.FOREVER)
duck.addAction(duckMove)

quack = duck.playsound( 'quack.wav', viz.STOP )

vizact.onkeydown( 'q', quack.play, viz.LOOP )

I wish I could attach a video, but I guess I can't. Does anyone know why this occurs?

kennethkarthik 10-05-2020 03:56 PM

Hi nom nom,

I'm not able to recreate this issue in Vizard 6. Let me try it out with Vizard 5 and let you know if there's a fix. Until then, feel free to use the Vizard 6 free download to test out your scripts without the frame drops.


All times are GMT -7. The time now is 08:23 AM.

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