class Tracksperanto::Tool::Slipper

Slips the keyframe positions by a specific integer amount of frames, positive values slip forward (later in time). Useful if you just edited some stuff onto the beginning if your sequence and need to extend your tracks.

Public Class Methods

action_description() click to toggle source
# File lib/tools/slipper.rb, line 7
def self.action_description
  "Slip all the tracker keyframes in time"
end

Public Instance Methods

export_point(frame, float_x, float_y, float_residual) click to toggle source
Calls superclass method
# File lib/tools/slipper.rb, line 11
def export_point(frame, float_x, float_y, float_residual)
  super(frame + @slip.to_i, float_x, float_y, float_residual)
end