This commit is contained in:
2026-04-21 14:58:22 +08:00
parent 2f48948e43
commit e7c1611f6b
23 changed files with 748 additions and 49 deletions

View File

@ -35,3 +35,10 @@ export type ModelClickPayload = {
export type SceneReadyPayload = {
scene: Scene | null;
};
export type HotspotClickPayload = {
id: string;
name?: string;
meshName?: string;
payload?: unknown;
};