Skip to content

Commit

Permalink
Make comments about new sound private for now
Browse files Browse the repository at this point in the history
  • Loading branch information
vkalpias committed Jan 21, 2016
1 parent 4320856 commit a528b04
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/framework/components/sound/component.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pc.extend(pc, function () {
/**
* @private
* @component
* @name pc.SoundComponent
* @class The Sound Component controls playback of {@link pc.Sound}s.
Expand Down
1 change: 1 addition & 0 deletions src/framework/components/sound/slot.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ pc.extend(pc, function () {
'use strict';

/**
* @private
* @name pc.SoundSlot
* @class The SoundSlot controls playback of an audio asset.
* @description Create a new SoundSlot
Expand Down
1 change: 1 addition & 0 deletions src/framework/components/sound/system.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pc.extend(pc, function () {
/**
* @private
* @name pc.SoundComponentSystem
* @class Manages creation of {@link pc.SoundComponent}s.
* @description Create a SoundComponentSystem
Expand Down
1 change: 1 addition & 0 deletions src/sound/instance.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ pc.extend(pc, function () {

if (pc.SoundManager.hasAudioContext()) {
/**
* @private
* @name pc.SoundInstance
* @class A pc.SoundInstance plays a {@link pc.Sound}
* @param {pc.SoundManager} manager The sound manager
Expand Down
1 change: 1 addition & 0 deletions src/sound/instance3d.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pc.extend(pc, function () {

if (pc.SoundManager.hasAudioContext()) {
/**
* @private
* @name pc.SoundInstance3d
* @extends {pc.SoundInstance}
* @class A pc.SoundInstance3d plays a {@link pc.Sound} in 3D
Expand Down
1 change: 1 addition & 0 deletions src/sound/manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ pc.extend(pc, function () {
}

/**
* @private
* @name pc.SoundManager
* @class The SoundManager is used to load and play audio. As well as apply system-wide settings
* like global volume, suspend and resume.
Expand Down

0 comments on commit a528b04

Please sign in to comment.