Skip to content

Commit 38f22ef

Browse files
authored
Fix constants export (#121)
1 parent b51b861 commit 38f22ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export {default as DirectionalLight} from './lights/DirectionalLight';
1414
export {default as Frustum} from './math/Frustum';
1515
export {default as Geometry} from './Geometry';
1616
export {default as Mesh} from './Mesh';
17-
export {default as libConstants} from './libConstants';
1817
export {default as Line3} from './math/Line3';
1918
export {default as MultiSprite} from './MultiSprite';
2019
export {default as MultiSpriteMaterial} from './materials/MultiSpriteMaterial';
@@ -42,3 +41,6 @@ export {default as quat} from './math/quat';
4241

4342
import * as Math from './math/Math';
4443
export {Math};
44+
45+
import * as libConstants from './libConstants';
46+
export {libConstants};

0 commit comments

Comments
 (0)