Skip to content

Commit

Permalink
Change of API issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ndepalma authored and dpacgopinath committed Oct 29, 2021
1 parent 1b57112 commit 6f808fc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fairmotion/tasks/motion_graph/motion_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,10 @@ def create_motion_by_following(self, nodes):
self.load_motion_at_idx(
motion_idx, self.motion_files[motion_idx]
)
m = self.motions[motion_idx].detach(
frame_start, frame_end + self.frames_blend
m = motion_ops.cut(
self.motions[motion_idx],
frame_start,
frame_end + self.frames_blend,
)
motion = motion_ops.append_and_blend(
motion, m, blend_length=self.blend_length,
Expand Down

0 comments on commit 6f808fc

Please sign in to comment.