Where is AnimSequence now? :)

Hello.

I just compiled UE 4.13 from 4.13 branch of UE git repository and started my game project on it.

And now I got tons of my C++ code compilation.

For example, I found interesting error:
error C2027: use of undefined type ‘UAnimSequence’

As I know, there was a lot code rework of animation functional in UE.

Have you moved UAnimSequence to the another class/object?

Thank you! :heart:

Hey Khusnutdinov,

Part of the 4.13 change includes some changes to how Animation headers are being handled.

Try adding this to the top of the class that is using UAnimSequence.:

#include "Runtime/Engine/Classes/Animation/AnimSequence.h"

Thank you very much!