9 lines
142 B
TypeScript
9 lines
142 B
TypeScript
import type { Vector3 } from './Vector3';
|
|
|
|
export class LLAnimationJointKeyFrame
|
|
{
|
|
public time: number;
|
|
public transform: Vector3;
|
|
}
|
|
|