When using NewBinding, the bind does not work properly with the level sequence specified by ShotTrack.
The cause is that Guid of ExistingBindingID will be empty when passing through ActorPicked in ActorPickerTrackEditor.cpp. Because of this, the space of ConstraintBindingID set by F3DAttachTrackEditor :: AddKeyInternal becomes Root.
This issue is fixed by changing processing in AddKeyInternal as follows.
// ConstraintBindingID = FMovieSceneObjectBindingID(ParentActorId, GetSequencer()->GetFocusedTemplateID());
ConstraintBindingID = FMovieSceneObjectBindingID(ParentActorId, GetSequencer()->GetFocusedTemplateID(), EMovieSceneObjectBindingSpace::Local);
result : failed to attach in shot track
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-61531 in the post.
1 |
Component | UE - Anim - Sequencer |
---|---|
Affects Versions | 4.19.2, 4.20 |
Target Fix | 4.20 |
Created | Jul 6, 2018 |
---|---|
Resolved | Jul 6, 2018 |
Updated | Jul 12, 2018 |