Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+13
View File
@@ -0,0 +1,13 @@
import * as React from 'react';
import { Object3D, AnimationClip, AnimationAction, AnimationMixer } from 'three';
type Api<T extends AnimationClip> = {
ref: React.RefObject<Object3D | undefined | null>;
clips: AnimationClip[];
mixer: AnimationMixer;
names: T['name'][];
actions: {
[key in T['name']]: AnimationAction | null;
};
};
export declare function useAnimations<T extends AnimationClip>(clips: T[], root?: React.RefObject<Object3D | undefined | null> | Object3D): Api<T>;
export {};