Files
node-metaverse/lib/classes/LLAnimationJointKeyFrame.ts

9 lines
142 B
TypeScript
Raw Permalink Normal View History

import type { Vector3 } from './Vector3';
export class LLAnimationJointKeyFrame
{
public time: number;
public transform: Vector3;
}