@mml-io/3d-web-client-core 0.23.1 → 0.23.3

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,4 +1,4 @@
1
- import { Color, SkinnedMesh, Object3D } from "three";
1
+ import { Color, Object3D } from "three";
2
2
  import { ColorPartName } from "../CharacterModel";
3
3
  import { InstancedMesh2 } from "./vendor/";
4
4
  export type ColorSamplingOptions = {
@@ -9,6 +9,6 @@ export type ColorSamplingOptions = {
9
9
  };
10
10
  debug?: boolean;
11
11
  };
12
- export declare function captureCharacterColors(characterMesh: SkinnedMesh, options: ColorSamplingOptions): Map<ColorPartName, Color>;
12
+ export declare function captureCharacterColors(characterMesh: Object3D, options: ColorSamplingOptions): Map<ColorPartName, Color>;
13
13
  export declare function captureCharacterColorsFromObject3D(object3D: Object3D, options: ColorSamplingOptions): Map<ColorPartName, Color>;
14
14
  export declare function updateDebugTextureCanvas(instancedMesh: InstancedMesh2): void;