Class: Ruby2D::Text
- Inherits:
-
Object
- Object
- Ruby2D::Text
- Defined in:
- lib/ruby2d/text.rb
Instance Attribute Summary collapse
-
#size ⇒ Object
Returns the value of attribute size.
-
#text ⇒ Object
Returns the value of attribute text.
-
#x ⇒ Object
Returns the value of attribute x.
-
#y ⇒ Object
Returns the value of attribute y.
Instance Method Summary collapse
- #color=(c) ⇒ Object
-
#initialize(x = 0, y = 0, size = 20, msg = "Hello World!", font = "Arial", c = "white") ⇒ Text
constructor
A new instance of Text.
- #remove ⇒ Object
Constructor Details
#initialize(x = 0, y = 0, size = 20, msg = "Hello World!", font = "Arial", c = "white") ⇒ Text
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/ruby2d/text.rb', line 8 def initialize(x=0, y=0, size=20, msg="Hello World!", font="Arial", c="white") if File.exists? font @font = font else @font = resolve_path(font) end @type_id = 4 @x, @y, @size = x, y, size @text, @color = msg, c update_color(c) if defined? Ruby2D::DSL Ruby2D::Application.add(self) end end |
Instance Attribute Details
#size ⇒ Object
Returns the value of attribute size.
6 7 8 |
# File 'lib/ruby2d/text.rb', line 6 def size @size end |
#text ⇒ Object
Returns the value of attribute text.
6 7 8 |
# File 'lib/ruby2d/text.rb', line 6 def text @text end |
#x ⇒ Object
Returns the value of attribute x.
6 7 8 |
# File 'lib/ruby2d/text.rb', line 6 def x @x end |
#y ⇒ Object
Returns the value of attribute y.
6 7 8 |
# File 'lib/ruby2d/text.rb', line 6 def y @y end |
Instance Method Details
#color=(c) ⇒ Object
26 27 28 29 |
# File 'lib/ruby2d/text.rb', line 26 def color=(c) @color = c update_color(c) end |
#remove ⇒ Object
35 36 37 38 39 |
# File 'lib/ruby2d/text.rb', line 35 def remove if defined? Ruby2D::DSL Ruby2D::Application.remove(self) end end |