class TEF::Animation::StringDisplay

Attributes

string[R]

Public Class Methods

new() click to toggle source
Calls superclass method TEF::Animation::Animatable::new
# File lib/tef/Animation/String.rb, line 15
def initialize()
        super();

        self.string = "";
end

Public Instance Methods

string=(new_string) click to toggle source
# File lib/tef/Animation/String.rb, line 21
def string=(new_string)
        return if new_string == @string
        @string = new_string
        
        @animatable_pending_strings = [new_string]
end