Skip to content

Commit

Permalink
Update controller.h
Browse files Browse the repository at this point in the history
  • Loading branch information
recp committed Sep 10, 2023
1 parent dd213b5 commit 47901fd
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions include/ak/controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,17 @@ struct AkNode;
struct FListItem;

typedef enum AkMorphMethod {
AK_MORPH_METHOD_NORMALIZED = 1,
AK_MORPH_METHOD_RELATIVE = 2,
AK_MORPH_METHOD_ADDITIVE = AK_MORPH_METHOD_RELATIVE
/* Weights of blend shapes normalized to 1 (or 100%) */
AK_MORPH_METHOD_NORMALIZED = 1,

/* Blend shapes defined as a difference from the base shape */
AK_MORPH_METHOD_RELATIVE = 2,

/* Alias for RELATIVE, treat additive as relative in this context */
AK_MORPH_METHOD_ADDITIVE = AK_MORPH_METHOD_RELATIVE,

/* Each blend shape applied fully on top of the previous one */
AK_MORPH_METHOD_ABSOLUTE = 3
} AkMorphMethod;

typedef struct AkBoneWeight {
Expand Down

0 comments on commit 47901fd

Please sign in to comment.