You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/audiodocs/docs/core/audio-param.mdx
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ as they are more efficient for continuous changes. For more specific use cases,
49
49
| Error type | Description |
50
50
| :---: | :---- |
51
51
|`RangeError`|`startTime` is negative number. |
52
+
|`NotSupportedError`|`startTime` falls within the interval $[T, T+D)$ where $T$ is the time of previously scheduled [`setValueCurveAtTime`](/docs/core/audio-param#setvaluecurveattime) event and $D$ is its duration. |
52
53
53
54
#### Returns `AudioParam`.
54
55
@@ -69,6 +70,7 @@ The change begins at the time designated for the previous event. It follows a li
69
70
| Error type | Description |
70
71
| :---: | :---- |
71
72
|`RangeError`|`endTime` is negative number. |
73
+
|`NotSupportedError`|`endTime` falls within the interval $[T, T+D)$ where $T$ is the time of previously scheduled [`setValueCurveAtTime`](/docs/core/audio-param#setvaluecurveattime) event and $D$ is its duration. |
72
74
73
75
#### Returns `AudioParam`.
74
76
@@ -89,6 +91,7 @@ The change begins at the time designated for the previous event. It follows an e
89
91
| Error type | Description |
90
92
| :---: | :---- |
91
93
|`RangeError`|`endTime` is negative number. |
94
+
|`NotSupportedError`|`endTime` falls within the interval $[T, T+D)$ where $T$ is the time of previously scheduled [`setValueCurveAtTime`](/docs/core/audio-param#setvaluecurveattime) event and $D$ is its duration. |
92
95
93
96
#### Returns `AudioParam`.
94
97
@@ -111,6 +114,7 @@ This method is useful for decay or release portions of [ADSR envelopes](/docs/ef
111
114
| :---: | :---- |
112
115
|`RangeError`|`startTime` is negative number. |
113
116
|`RangeError`|`timeConstant` is negative number. |
117
+
|`NotSupportedError`|`startTime` falls within the interval $[T, T+D)$ where $T$ is the time of previously scheduled [`setValueCurveAtTime`](/docs/core/audio-param#setvaluecurveattime) event and $D$ is its duration. |
0 commit comments