aptechka 0.5.32 → 0.5.33

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.
@@ -1,7 +1,6 @@
1
- import { RoundedBoxGeometry } from 'three/examples/jsm/Addons.js';
2
1
  import { En3SourceConsumer } from './En3SourceConsumer';
3
2
  import { En3SourceManager, En3SourceManagerLoader, En3SourceManagerParameters } from '../attachments/En3SourceManager';
4
- import { Material, Mesh, Texture } from 'three';
3
+ import { BufferGeometry, Material, Mesh, Texture } from 'three';
5
4
 
6
5
  export type En3ImageLikeMaterial<TTexture extends Texture> = Material & {
7
6
  map: TTexture | null;
@@ -16,7 +15,7 @@ export interface En3ImageLikeParameters<TTexture extends Texture, TMaterial exte
16
15
  fit?: En3ImageLikeFit;
17
16
  loader: En3SourceManagerLoader<TTexture>;
18
17
  }
19
- export declare class En3ImageLike<TTexture extends Texture, TMaterial extends En3ImageLikeMaterial<TTexture>> extends Mesh<RoundedBoxGeometry, TMaterial> implements En3SourceConsumer<TTexture> {
18
+ export declare class En3ImageLike<TTexture extends Texture, TMaterial extends En3ImageLikeMaterial<TTexture>> extends Mesh<BufferGeometry, TMaterial> implements En3SourceConsumer<TTexture> {
20
19
  #private;
21
20
  constructor(parameters: En3ImageLikeParameters<TTexture, TMaterial>);
22
21
  get sourceManager(): En3SourceManager<TTexture>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aptechka",
3
- "version": "0.5.32",
3
+ "version": "0.5.33",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/denisavitski/aptechka.git"