This class handles the state of the message window that display text or selections, etc. The instance of this class is referenced by $game_message.
Methods
Constants
MAX_LINE | = | 4 |
Constants |
Attributes
[RW] | background | |
[RW] | choice_cancel_type | |
[RW] | choice_max | |
[RW] | choice_proc | |
[RW] | choice_start | |
[RW] | face_index | |
[RW] | face_name | |
[RW] | main_proc | |
[RW] | num_input_digits_max | |
[RW] | num_input_variable_id | |
[RW] | position | |
[RW] | texts | Public Instance Variables |
[RW] | visible |
Class Public methods
new()
Link
Object Initialization
Source: show
# File Game_Message.rb, line 33 def initialize clear @visible = false end
Instance Public methods
busy()
Link
Busy Status Determination
Source: show
# File Game_Message.rb, line 59 def busy return @texts.size > 0 end