Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

Occlusion and obstruction

0 votes
Has anyone used the occlusion/obstruction functionality? If so, how did you do it? Also, further to that, how about in Unity?
asked Nov 21, 2013 in General Discussion by Dave C. (190 points)

1 Answer

+1 vote

Obstruction/Occlusion is currently supported only through code calls.  We don't provide any geometry-based analysis yet.  You can check the Wwise SDK documentation ([Wwise]\SDK\Help) for SetObjectObstructionAndOcclusion as a basis.  There is numerous ways to integrate this, some more complex (and costly) than others.

A quick and dirty way would simply be to use the raytracing functionality between all sound emitters of importance and the listener.  If there is a hit, you'll need to determine what you did hit.  Is it a wall splitting 2 rooms?  A simple object?  If a wall, then you could assume occlusion and either hardcode an occlusion level or set it based on the material.  If it is not a wall, then set the obstruction level. 

There are entire papers based on sound propagation :)  Each game has its own needs and (more importantly) its limit in terms of CPU and memory it wants to spend on that particular problem.  So we provide the basic hook to feed obstruction/occlusion, but the actual geometry analysis is left for the game programmer.

answered Dec 3, 2013 by Mathieu J. (Audiokinetic) (7,080 points)
I read your knwoledgebase about Obstruction/Occlusion.I have a question."Instead of using ray-tracing, try defining volumetric zones approximations."

how to do ray-tracing and the other solution with UE3?
...