Class: FontStyleFactory

Inherits:
Object show all
Defined in:
lib/gamebox/core/font_style_factory.rb

Instance Method Summary collapse

Instance Method Details

#build(name, size, color, x_scale = 1, y_scale = 1) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/gamebox/core/font_style_factory.rb', line 4

def build(name, size, color, x_scale=1, y_scale=1)
  this_object_context.in_subcontext do |style_context|
    style_context["font_style"].tap do |style|
      style.configure name, size, color, x_scale, y_scale
    end
  end
end