@realsee/vreo 0.1.4 → 0.1.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@realsee/vreo",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Vreo (VR Video 缩写) 是基于如视三维渲染引擎 Five 和 用户界面构建库 React 实现的如视 3D 空间剧本播放器。",
5
5
  "keywords": [
6
6
  "realsee",
@@ -40,6 +40,10 @@ export enum VreoKeyframeEnum {
40
40
  * 结束
41
41
  */
42
42
  Exit = 'Exit',
43
+ /**
44
+ * 自定义剧本帧
45
+ */
46
+ Custom = 'Custom',
43
47
  }
44
48
 
45
49
  /**
@@ -223,3 +227,6 @@ export type VideoEffectData = {
223
227
  direction?: Vertex
224
228
  vector?: Pick<Pose, 'longitude' | 'latitude'>
225
229
  }
230
+
231
+ /** 自定义序列帧 */
232
+ export type CustomData = Record<string, any>