@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/docs/assets/search.js +1 -1
- package/docs/classes/Player.Player-1.html +3 -3
- package/docs/enums/Player.InfoPanelTypeEnum.html +1 -1
- package/docs/enums/Player.PanoEffectEnum.html +1 -1
- package/docs/enums/Player.PanoTagEnum.html +1 -1
- package/docs/enums/Player.VreoKeyframeEnum.html +13 -11
- package/docs/enums/fivePlugins.CameraMovementEffect.html +1 -1
- package/docs/enums/fivePlugins.Rotation.html +1 -1
- package/docs/interfaces/Player.PlayerConfigs.html +1 -1
- package/docs/interfaces/Player.Vertex.html +1 -1
- package/docs/interfaces/Player.VreoKeyframe.html +1 -1
- package/docs/interfaces/Player.VreoUnit.html +1 -1
- package/docs/interfaces/Player.VreoVideo.html +1 -1
- package/docs/interfaces/fivePlugins.CameraMovementOptsCallback.html +1 -1
- package/docs/interfaces/fivePlugins.CameraMovementPluginExportType.html +2 -2
- package/docs/interfaces/fivePlugins.ModelTVVideoPluginData.html +1 -1
- package/docs/interfaces/fivePlugins.ModelTVVideoPluginExportType.html +1 -1
- package/docs/interfaces/fivePlugins.ModelTVVideoPluginParameterType.html +1 -1
- package/docs/interfaces/react.VreoActionCallbacks.html +6 -6
- package/docs/modules/Player.html +14 -12
- package/docs/modules/fivePlugins.html +2 -2
- package/docs/modules/react.html +1 -1
- package/lib/typings/VreoUnit.d.ts +7 -1
- package/lib/typings/VreoUnit.js +1 -0
- package/package.json +1 -1
- package/resources/typings/VreoUnit.ts +7 -0
package/package.json
CHANGED
|
@@ -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>
|