vis-core 0.30.0-beta.72 → 0.30.0-beta.73
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/dist/index.d.ts +7 -4
- package/dist/index.js +37837 -13924
- package/package.json +3 -4
package/dist/index.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ import { Polygon } from 'geojson';
|
|
|
20
20
|
import { Position } from 'geojson';
|
|
21
21
|
import { RoomEnvironment } from 'three/examples/jsm/environments/RoomEnvironment.js';
|
|
22
22
|
import * as THREE from 'three';
|
|
23
|
-
import
|
|
23
|
+
import { default as TWEEN } from 'three/examples/jsm/libs/tween.module.js';
|
|
24
|
+
import { Tween } from 'three/examples/jsm/libs/tween.module.js';
|
|
24
25
|
import { Water } from './Water2';
|
|
25
26
|
|
|
26
27
|
export declare const access: {
|
|
@@ -1685,8 +1686,8 @@ declare class Target extends BaseObject {
|
|
|
1685
1686
|
};
|
|
1686
1687
|
offset: THREE.Vector2;
|
|
1687
1688
|
timer: ReturnType<typeof setTimeout> | null;
|
|
1688
|
-
inTween:
|
|
1689
|
-
outTween:
|
|
1689
|
+
inTween: Tween<any> | null;
|
|
1690
|
+
outTween: Tween<any> | null;
|
|
1690
1691
|
constructor(options: Opt);
|
|
1691
1692
|
createWave(color: string): THREE.Mesh<THREE.PlaneGeometry, THREE.ShaderMaterial, THREE.Object3DEventMap>;
|
|
1692
1693
|
createRipple(texture: THREE.Texture): THREE.Mesh<THREE.CylinderGeometry, THREE.ShaderMaterial, THREE.Object3DEventMap>;
|
|
@@ -1721,7 +1722,9 @@ declare class Tube extends BaseObject {
|
|
|
1721
1722
|
|
|
1722
1723
|
export { TWEEN }
|
|
1723
1724
|
|
|
1724
|
-
export
|
|
1725
|
+
export { Tween }
|
|
1726
|
+
|
|
1727
|
+
export declare const VERSION = "0.30.0-beta.73";
|
|
1725
1728
|
|
|
1726
1729
|
declare class Viewport {
|
|
1727
1730
|
editor: Editor;
|