1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-12 12:54:01 +02:00
This commit is contained in:
syuilo
2026-04-29 12:59:46 +09:00
parent 5de191f01a
commit 35ad1d758e
2 changed files with 10 additions and 1 deletions

View File

@@ -192,7 +192,7 @@ export class ModelManager {
private bakedMeshes: BABYLON.Mesh[] = [];
private hasTexture: boolean;
constructor(root: BABYLON.Mesh, originalMeshes: BABYLON.Mesh[], hasTexture: boolean, bakedCallback: (() => void) | null = null) {
constructor(root: BABYLON.Mesh, originalMeshes: BABYLON.Mesh[], hasTexture: boolean, bakedCallback: ((meshes: BABYLON.Mesh[]) => void) | null = null) {
this.root = root;
this.originalMeshes = originalMeshes;
this.hasTexture = hasTexture;