struct MAGES::CharacterController::AnimatorController::MAGESAnimationData

Overview

The MAGES Animation Data struct. More…

struct MAGESAnimationData
{
    // fields

    string AnimationName;
    AnimationDurationType DurType;

    // methods

    MAGESAnimationData(
        string animationName,
        AnimationDurationType durType = AnimationDurationType.Persistent
    );
};

Detailed Documentation

The MAGES Animation Data struct.

Fields

string AnimationName

The animation data.

AnimationDurationType DurType

The Duration type of the animation.

Methods

MAGESAnimationData(
    string animationName,
    AnimationDurationType durType = AnimationDurationType.Persistent
)

Initializes a new instance of the MAGESAnimationData struct.

Parameters:

animationName

The animation name.

durType

The duration type.