new Sound()
MEMBERS
-
readonly duplicateSource :string
-
String indicating the source of this Sound if it is a duplicate. IncisorĀ® automatically detects when two or more AssetComponents are identical, ensuring that only one copy of the associated data is loaded to reduce the loaded size of the project. Those AssetComponents that are duplicates are marked by indicating the name of the source of their data. This member is undefined for AssetComponents that are not duplicates.
- Default Value:
- undefined
-
readonly isLoaded :boolean
-
Boolean indicating if this Sound is currently loaded.
-
readonly loadingTierRequirements :Array.<number>
-
The LoadingTier that this Sound belongs too. LoadingTiers are a means to organize AssetComponents into separately downloadable groups.
-
mainVolume :number
-
The current volume setting for this Sound, where 0 is quiet and 1 is full volume.
-
readonly name :string
-
The Sounds's name. This must be unique among Sounds.
-
readonly netVolume :number
-
The net volume, including the mainVolume of the Sound, and all of the volumes of the Sound's VolumeControls.
-
volumeControl :Array.<VolumeControl>
-
The VolumeControls that this Sounds currently subscribes to. VolumeControls are a way to control the volumes of groups of sounds, much like a 'audio bus'.
- Default Value:
- [nc.volumeControls.MainVolumeControl]
-
autoplay :boolean
-
Boolean determining if the PlaybackController automatically starts playing when included in a newly instantiated Construct.
- Inherited From:
- Default Value:
- true
-
readonly duration :number
-
The read-only length of this PlaybackController in seconds. To change the duration, adjust the 'startTime' or 'endTime' properties.
- Inherited From:
-
inheritedTypes :object
-
Dictionary object listing all of the types this object is compatible with.
- Inherited From:
-
lazyStop :boolean
-
Boolean flag determining if the PlaybackController will hault the next time the time reachs the endTime (or startTime if playback is a negative value). If this flag is false, the PlaybackController loops and continues playing indefinitely.
- Inherited From:
- Default Value:
- false
-
readonly netPlaybackRate :number
-
Read-only value denoting the net playbackRate, including the effects of this PlaybackController's SpeedControls.
- Inherited From:
-
pauseImmunity :PauseEvent|Array.<PauseEvent>
-
The PauseEvent or Array of PauseEvents that this PlaybackController will be immune to. Set this parameter to [] for this PlaybackController to have no pause immunity.
- Inherited From:
- Default Value:
- nc.defaultPauseImmunity
-
playbackRate :number
-
Value multiplying the progression of the 'time' value. To play twice as fast use 2, for items that can play backwards, use negative values.
- Inherited From:
- Default Value:
- 1
-
readonly playbackState :string
-
Read-only string denoting the current playback state: 'stopped', 'paused', or 'playing'. State values are available in 'nc.constants.playbackStates'.
- Inherited From:
- Default Value:
- nc.constants.playbackStates.stopped
-
speedControl :SpeedControl|Array.<SpeedControl>
-
The SpeedControl or Array of SpeedControls that this PlaybackController is affected by.
- Inherited From:
- Default Value:
- nc.defaultSpeedControl
-
type :string
-
Type identifier.
- Inherited From:
METHODS
-
addLazyStopCallback(callbackOwner, callbackName, callbackArgs (opt))
-
Adds a callback that occurs upon the next 'lazyStop', which occurs any time the time reaches the startTime or endTime while the 'lazyStop' flag is true. It should be noted that all lazyStop callbacks are consumed upon encountering a lazyStop, and would need to be-added to be triggered upon subsequent lazyStops.
Parameters:
Name Type Attributes Default Description callbackOwner
object The object owning the optional callback function that is triggered when a lazy stop occurs.
callbackName
string The name of the optional callback function that is triggered when a lazy stop occurs.
callbackArgs
Array | any <optional>
Parameters for the optional callback function that is triggered when a lazy stop occurs.
- Inherited From:
-
addStateChangeCallback(callbackOwner, callbackName, callbackArgs (opt))
-
Adds a callback that occurs if/when any component of this PlaybackController has changed. This can be used to manage processes that run entirely outside of the IncisorĀ® system by providing a callback to update said processes upon any change. A string denoting the triggering change will be passed in as the callback function's first parameter, and user-defined parameters will follow.
Parameters:
Name Type Attributes Default Description callbackOwner
object The object owning the optional callback function that is triggered when any component of this PlaybackController has changed.
callbackName
string The name of the optional callback function that is triggered when any component of this PlaybackController has changed.
callbackArgs
Array | any <optional>
Parameters for the optional callback function that is triggered when any component of this PlaybackController has changed.
- Inherited From:
-
addTimeUpdateCallback(callbackOwner, callbackName, callbackArgs (opt))
-
Adds a callback that occurs any time the 'time' property is updated, which happens while this PlaybackController is playing, but also when time is set directly. The time value will be sent to this callback as its first parameter, with any user-defined args following.
Parameters:
Name Type Attributes Default Description callbackOwner
object The object owning the callback function that is triggered when time is updated.
callbackName
string The name of the callback function that is triggered when time is updated.
callbackArgs
Array | any <optional>
Args for the callback function that is triggered when time is updated.
- Inherited From:
-
dispose()
-
Removes internal IncisorĀ® references to this PlaybackController in order to aid memory management.
- Inherited From:
-
pause()
-
Changes the playbackState to "paused", and pauses the progression of the 'time' value.
- Inherited From:
-
play()
-
Changes the playbackState to "playing", and begins the progression of the 'time' value. While playing, the PlaybackController automatically updates the 'time' value once every fixedUpdate.
- Inherited From:
-
playOnce(lazyStopCallbackOwner (opt), lazyStopCallbackName (opt), lazyStopCallbackArgs (opt))
-
Starts playing with 'time=startTime' (or if playbackRate is negative, 'time=endTime') and sets the 'lazyStop' value to true. An optional callback function can be provided for when playbackController stops - this callback is consumed upon stopping.
Parameters:
Name Type Attributes Default Description lazyStopCallbackOwner
object <optional>
The object owning the optional callback function that is triggered when a lazy stop occurs.
lazyStopCallbackName
string <optional>
The name of the optional callback function that is triggered when a lazy stop occurs.
lazyStopCallbackArgs
Array | any <optional>
Parameters for the optional callback function that is triggered when a lazy stop occurs.
- Inherited From:
-
removeLazyStopCallback(callbackOwner, callbackName)
-
Removes the given lazyStop callback.
Parameters:
Name Type Attributes Default Description callbackOwner
object The object owning the callback to be removed.
callbackName
string The name of the callback to be removed.
- Inherited From:
-
removeStateChangeCallback(callbackOwner, callbackName)
-
Removes the given stateChange callback.
Parameters:
Name Type Attributes Default Description callbackOwner
object The object owning the callback to be removed.
callbackName
string The name of the callback to be removed.
- Inherited From:
-
removeTimeUpdateCallback(callbackOwner, callbackName)
-
Removes the given timeUpdate callback.
Parameters:
Name Type Attributes Default Description callbackOwner
object The object owning the callback to be removed.
callbackName
string The name of the callback to be removed.
- Inherited From:
-
stop()
-
Changes the playbackState to "stopped" and sets the 'time' value to 'startTime'.
- Inherited From: