Interface IAction<T>Internal

interface IAction<T> {
    hasActions: boolean;
    isRepeat?: boolean;
    isTween?: boolean;
    isYoyo?: boolean;
    times?: number;
    init?(target): ActionDescriptor;
}

Type Parameters

  • T

Implemented by

Properties

hasActions: boolean
isRepeat?: boolean
isTween?: boolean
isYoyo?: boolean
times?: number

Methods