This helper displays the directional cone of a [page:PositionalAudio].
const positionalAudio = new THREE.PositionalAudio( listener );
positionalAudio.setDirectionalCone( 180, 230, 0.1 );
const helper = new PositionalAudioHelper( positionalAudio );
positionalAudio.add( helper );
[page:PositionalAudio audio] -- The [page:PositionalAudio] to be visualized.
[page:Number range] -- (optional) The range of the directional cone.
[page:Number divisionsInnerAngle] -- (optional) The amount of divisions of the inner part of the directional cone.
[page:Number divisionsOuterAngle] -- (optional) The amount of divisions of the outer part of the directional cone.
See the base [page:Object3D] class for common properties.
[page:PositionalAudio] to be visualized.
The range of the directional cone.
The amount of divisions of the inner part of the directional cone.
The amount of divisions of the outer part of the directional cone.
See the base [page:Line] class for common methods.
Updates the helper.
Frees the GPU-related resources allocated by this instance. Call this method whenever this instance is no longer used in your app.
[link:https://github.com/mrdoob/three.js/blob/master/examples/jsm/helpers/PositionalAudioHelper.js examples/jsm/helpers/PositionalAudioHelper.js]