playMaker

Author Topic: fixed add animation clip.  (Read 3820 times)

hensoup

  • Playmaker Newbie
  • *
  • Posts: 13
fixed add animation clip.
« 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;