class MovieMasher::LayerColor

a background color layer

Public Class Methods

new(duration, color) click to toggle source
# File lib/graphs/layers.rb, line 6
def initialize(duration, color)
  @filter = FilterSourceColor.new duration, color
end

Public Instance Methods

inputs() click to toggle source
# File lib/graphs/layers.rb, line 10
def inputs
  []
end
layer_command(scope) click to toggle source
# File lib/graphs/layers.rb, line 14
def layer_command(scope)
  @filter.filter_command(scope)
end
range() click to toggle source
# File lib/graphs/layers.rb, line 18
def range
  nil
end
trim_command(*) click to toggle source
# File lib/graphs/layers.rb, line 22
def trim_command(*)
  ''
end