Interface AnimatorOptions

Animator component options

AnimatorOptions

2024.1.4

yisky

interface AnimatorOptions {
    controller: AnimatorController;
    userData?: {
        [key: string]: any;
    };
}

Hierarchy (view full)

Properties

controller: AnimatorController

Animator controller

AnimatorOptions

userData?: {
    [key: string]: any;
}

The component user data, default is {}

ComponentOptions