Files
node-metaverse/lib/classes/LLGestureAnimationStep.ts
2025-01-17 23:53:31 +00:00

13 lines
492 B
TypeScript

import { LLGestureStep } from './LLGestureStep';
import { LLGestureStepType } from '../enums/LLGestureStepType';
import type { UUID } from './UUID';
import { LLGestureAnimationFlags } from '../enums/LLGestureAnimationFlags';
export class LLGestureAnimationStep extends LLGestureStep
{
public stepType: LLGestureStepType = LLGestureStepType.Animation;
public animationName: string;
public assetID: UUID;
public flags: LLGestureAnimationFlags = LLGestureAnimationFlags.None;
}