Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/remapper/src/deps.ts>three.AnimationClip

A framework for Beat Saber map scripting.
Go to Latest
class three.AnimationClip
Re-export
import { three } from "https://deno.land/x/remapper@2.1.0/src/deps.ts";
const { AnimationClip } = three;

Constructors

new
AnimationClip(
name?: string,
duration?: number,
tracks?: KeyframeTrack[],
blendMode?: AnimationBlendMode,
)

Properties

duration: number
name: string
results: any[]
tracks: KeyframeTrack[]
uuid: string

Static Methods

CreateClipsFromMorphTargetSequences(
morphTargets: MorphTarget[],
fps: number,
noLoop: boolean,
): AnimationClip[]
CreateFromMorphTargetSequence(
name: string,
morphTargetSequence: MorphTarget[],
fps: number,
noLoop: boolean,
): AnimationClip
findByName(clipArray: AnimationClip[], name: string): AnimationClip
parse(json: any): AnimationClip
parseAnimation(animation: any, bones: Bone[]): AnimationClip
toJSON(clip: AnimationClip): any