1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 12:22:03 +08:00
trois/src/meshes/index.js

9 lines
344 B
JavaScript
Raw Normal View History

2020-09-14 22:57:11 +08:00
export { default as Box } from './Box.js';
2020-09-19 17:24:03 +08:00
export { default as Image } from './Image.js';
2020-09-16 01:50:51 +08:00
export { default as Plane } from './Plane.js';
2020-09-14 22:57:11 +08:00
export { default as Sphere } from './Sphere.js';
2020-09-18 04:37:19 +08:00
export { default as Text } from './Text.js';
2020-09-15 06:07:46 +08:00
export { default as InstancedMesh } from './InstancedMesh.js';
2020-09-19 18:16:16 +08:00
export { default as Sprite } from './Sprite.js';