@realsee/dnalogel 3.40.0-alpha.0 → 3.40.0

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/CHANGELOG.md CHANGED
@@ -1,4 +1,7 @@
1
1
  # CHANGELOG
2
+ ## 3.40.0
3
+ - change(blink): 现在返回值为 `animeInstance`,可以通过 `animeInstance.preComplete()` 来提前结束动画。
4
+
2
5
  ## 3.39.0
3
6
  - feat(GuideLinePlugin): 支持设置 `useAutoDepthTest` 来选择是否动态开启深度测试
4
7
 
@@ -178,5 +178,4 @@ export interface CatmullRomCurve3 {
178
178
  curve_type?: string;
179
179
  tension?: number;
180
180
  panoIndexList?: number[];
181
- panoIndexMap?: Record<number, number>;
182
181
  }
@@ -22,16 +22,11 @@ export declare function createLineGeometry(options: LineGeometryOption): {
22
22
  maxV: number;
23
23
  curvePath: any;
24
24
  curvePoints: any;
25
- animationWillError?: undefined;
26
25
  panoMap?: undefined;
27
26
  totalLength?: undefined;
28
27
  } | {
29
28
  geometry: THREE.BufferGeometry;
30
29
  maxV: number;
31
- animationWillError: {
32
- start: number;
33
- end: number;
34
- }[];
35
30
  curvePath: THREE.CurvePath<THREE.Vector3>;
36
31
  curvePoints: THREE.Vector3[];
37
32
  panoMap: Record<number, number>;