cerevox 2.6.1 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -103,14 +103,17 @@
|
|
|
103
103
|
- 光线:保持光源方向和强度一致
|
|
104
104
|
|
|
105
105
|
### BGM 音量控制
|
|
106
|
-
* 音量:默认BGM音量控制为-15db,通过设置BGM音轨的
|
|
106
|
+
* 音量:默认BGM音量控制为-15db,通过设置BGM音轨的gain effect控制
|
|
107
107
|
|
|
108
108
|
```json
|
|
109
109
|
{
|
|
110
|
-
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
|
|
110
|
+
...
|
|
111
|
+
"effects": [{
|
|
112
|
+
"name": "gain",
|
|
113
|
+
"params": {
|
|
114
|
+
"db": -15
|
|
115
|
+
}
|
|
116
|
+
}]
|
|
114
117
|
}
|
|
115
118
|
```
|
|
116
119
|
|
|
@@ -103,14 +103,17 @@
|
|
|
103
103
|
- 光线:保持光源方向和强度一致
|
|
104
104
|
|
|
105
105
|
### BGM 音量控制
|
|
106
|
-
* 音量:默认BGM音量控制为-15db,通过设置BGM音轨的
|
|
106
|
+
* 音量:默认BGM音量控制为-15db,通过设置BGM音轨的gain effect控制
|
|
107
107
|
|
|
108
108
|
```json
|
|
109
109
|
{
|
|
110
|
-
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
|
|
110
|
+
...
|
|
111
|
+
"effects": [{
|
|
112
|
+
"name": "gain",
|
|
113
|
+
"params": {
|
|
114
|
+
"db": -15
|
|
115
|
+
}
|
|
116
|
+
}]
|
|
114
117
|
}
|
|
115
118
|
```
|
|
116
119
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cerevox",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2",
|
|
4
4
|
"description": "TypeScript SDK for browser automation and secure command execution in highly available and scalable micro computer environments",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|