WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   3D sound & child objects (https://forum.worldviz.com/showthread.php?t=64)

FlyingWren 09-19-2003 11:59 AM

3D sound & child objects
 
Phenomenologically, 3D-sound played from objects loaded with viz.add() seem to be generated from the correct position. However, 3D-sound playback from objects loaded with viz.getchild() seem to be at the wrong position. For example,


objRoom = viz.add('Room.wrl')
objVent = objRoom.getchild('obj_Vent')

# start sound playing
objVent.playsound('air-vent.wav', viz.LOOP)


The 'air-vent' wave file seems to be playing at the position of the "Room" object, not the actual "Vent" subobject.

farshizzo 09-19-2003 12:13 PM

Hi,

This is due to the fact that objVent is at position (0,0,0) relative to its parent objRoom. I believe this has been fixed in 2.11, which computes the objects position relative to world coordinates by adding all the translations of its parents. For now you could do the following:

Code:

# Create a GROUP object which is simply a child object that has no geometry.
vent = viz.add(viz.GROUP)
vent.translate(x,y,z) #place the object at the vents true location
vent.playsound('air-vent.wav',viz.LOOP)

By the way, we should be releasing 2.11 today or Monday, sorry for the delay.


All times are GMT -7. The time now is 03:07 AM.

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