Sha256: b87a3ffdb9738b66c0e685d4f48047d23d6ea2933ec31224e3585248cd0f1fb3

Contents?: true

Size: 654 Bytes

Versions: 26

Compression:

Stored size: 654 Bytes

Contents

# -*- encoding : utf-8 -*-
# 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.
class Tracksperanto::Tool::Slipper < Tracksperanto::Tool::Base
  
  parameter :slip,  :cast => :int, :desc => "Number of frames to slip related to the current frames", :default => 0
  
  def self.action_description
    "Slip all the tracker keyframes in time"
  end
  
  def export_point(frame, float_x, float_y, float_residual)
    super(frame + @slip.to_i, float_x, float_y, float_residual)
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
tracksperanto-3.2.2 lib/tools/slipper.rb
tracksperanto-3.2.1 lib/tools/slipper.rb
tracksperanto-3.2.0 lib/tools/slipper.rb
tracksperanto-3.1.0 lib/tools/slipper.rb
tracksperanto-3.0.1 lib/tools/slipper.rb
tracksperanto-3.0.0 lib/tools/slipper.rb