Method: MotionBlender::Source#child_at

Defined in:
lib/motion_blender/source.rb

#child_at(*args) ⇒ Object



57
58
59
60
# File 'lib/motion_blender/source.rb', line 57

def child_at *args
  i = args.shift
  args.present? ? children[i].child_at(*args) : children[i]
end