mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 19:42:38 +02:00
This commit is contained in:
parent
f0f62670c5
commit
7e26256cac
4563 changed files with 1246712 additions and 17558 deletions
28
node_modules/three/examples/jsm/misc/MorphBlendMesh.d.ts
generated
vendored
Normal file
28
node_modules/three/examples/jsm/misc/MorphBlendMesh.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
import {
|
||||
BufferGeometry,
|
||||
Geometry,
|
||||
Material,
|
||||
Mesh
|
||||
} from '../../../src/Three';
|
||||
|
||||
export class MorphBlendMesh extends Mesh {
|
||||
|
||||
constructor( geometry: BufferGeometry | Geometry, material: Material );
|
||||
animationsMap: object;
|
||||
animationsList: object[];
|
||||
|
||||
createAnimation( name: string, start: number, end: number, fps: number ): void;
|
||||
autoCreateAnimations( fps: number ): void;
|
||||
setAnimationDirectionForward( name: string ): void;
|
||||
setAnimationDirectionBackward( name: string ): void;
|
||||
setAnimationFPS( name: string, fps: number ): void;
|
||||
setAnimationDuration( name: string, duration: number ): void;
|
||||
setAnimationWeight( name: string, weight: number ): void;
|
||||
setAnimationTime( name: string, time: number ): void;
|
||||
getAnimationTime( name: string ): number;
|
||||
getAnimationDuration( name: string ): number;
|
||||
playAnimation( name: string ): void;
|
||||
stopAnimation( name: string ): void;
|
||||
update( delta: number ): void;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue