Sha256: 2617fbdc4fccd2bc89bdd6d3edb32a176e3a2cf5e139d929e205b7ba81e4449a
Contents?: true
Size: 541 Bytes
Versions: 50
Compression:
Stored size: 541 Bytes
Contents
# 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::Middleware::Slipper < Tracksperanto::Middleware::Base DEFAULT_SLIP = 0 attr_accessor :slip cast_to_int :slip def slip @slip.to_i || DEFAULT_SLIP end def export_point(frame, float_x, float_y, float_residual) super(frame + slip, float_x, float_y, float_residual) end end
Version data entries
50 entries across 50 versions & 1 rubygems