Skip to content

Commit

Permalink
docs(audio): expose audio api doc
Browse files Browse the repository at this point in the history
  • Loading branch information
lslzl3000 committed Sep 15, 2023
1 parent 166d286 commit d1b79be
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/media-extention/AudioListener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { ComponentBase } from '@orillusion/core';
/**
* Audio Listener
* Used in conjunction {@link PositionAudio} or {@link StaticAudio}
* @internal
* @group Audio
*/
export class AudioListener extends ComponentBase {
Expand Down
1 change: 0 additions & 1 deletion packages/media-extention/PositionAudio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { AudioListener } from './AudioListener';
import { StaticAudio } from './StaticAudio';
/**
* Dynamic audio component, with volume varying based on the relative position of the monitor
* @internal
* @group Audio
*/
export class PositionAudio extends StaticAudio {
Expand Down
1 change: 0 additions & 1 deletion packages/media-extention/StaticAudio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { ComponentBase } from '@orillusion/core';
import { AudioListener } from './AudioListener';
/**
* Static audio component, volume level does not vary depending on the position of the monitor
* @internal
* @group Audio
*/
export class StaticAudio extends ComponentBase {
Expand Down

0 comments on commit d1b79be

Please sign in to comment.