Playmaker Forum

PlayMaker Updates & Downloads => Official Action Updates => Topic started by: hensoup on June 16, 2015, 02:36:20 AM

Title: fixed add animation clip.
Post by: hensoup on June 16, 2015, 02:36:20 AM
it was a simple fix having to use it for rag dolls. for Unity 5.
where "var animClip = animationClip.Value as AnimationClip;" is at
add "animClip.legacy = true;" after that.
Code: [Select]
var animClip = animationClip.Value as AnimationClip;

animClip.legacy = true;