Skip to content

Commit 2d509bd

Browse files
author
David Saffo
committed
import path updates
1 parent 7d26a67 commit 2d509bd

6 files changed

Lines changed: 6 additions & 14 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jpmorganchase/anu",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "",
55
"type": "module",
66
"files": [

src/prefabs/Prefab.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
import { TransformNode } from '@babylonjs/core/Meshes/transformNode';
1+
import { TransformNode, Scene, Node, Mesh } from '@babylonjs/core';
22
import { Selection } from '../selection/index';
3-
import { Scene } from '@babylonjs/core/scene';
4-
import { Node } from '@babylonjs/core/node';
5-
import { assign } from 'lodash-es';
6-
import { AbstractMesh, Mesh } from '@babylonjs/core';
3+
74

85
export class Prefab extends Mesh {
96
public name: string;

src/select.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
// SPDX-License-Identifier: Apache-2.0
22
// Copyright : J.P. Morgan Chase & Co.
33

4-
import { Engine } from '@babylonjs/core/Engines';
5-
import { Node } from '@babylonjs/core/node';
6-
import { Scene } from '@babylonjs/core/scene';
7-
import { Tags } from '@babylonjs/core/Misc/tags';
4+
import { Engine, Node, Scene, Tags } from '@babylonjs/core';
85
import { Selection } from './selection/index';
96

107
/**

src/selection/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
// SPDX-License-Identifier: Apache-2.0
22
// Copyright : J.P. Morgan Chase & Co.
33

4-
import { Node } from '@babylonjs/core';
5-
import { Scene } from '@babylonjs/core/scene';
4+
import { Node, Scene } from '@babylonjs/core';
65
import { select, selectName, selectId, selectTag, selectData } from './utility/select';
76
import { bind, bindInstance, bindThinInstance, bindClone} from './bind/bind';
87
import { positionX, positionY, positionZ } from './property/position';

src/selection/property/tags.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* TODO
66
*/
7-
import { Tags } from '@babylonjs/core/Misc/tags';
7+
import { Tags } from '@babylonjs/core';
88
import { Selection } from '../index';
99

1010
export function addTags(this: Selection, tags: string | ((d: any, i: number) => string)) {

src/selection/utility/get.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// SPDX-License-Identifier: Apache-2.0
22
// Copyright : J.P. Morgan Chase & Co.
33

4-
import { AbstractMesh, TransformNode } from '@babylonjs/core/Meshes';
54
import { Selection } from '../index';
65
import loGet from 'lodash-es/get';
76

0 commit comments

Comments
 (0)