Adding input for auto-mashing text
This commit is contained in:
parent
b27158c273
commit
629a38aff7
|
|
@ -398,7 +398,7 @@ class Window_Message < Window_Selectable
|
||||||
end
|
end
|
||||||
tick
|
tick
|
||||||
end
|
end
|
||||||
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL)
|
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
|
||||||
@skip_text = true
|
@skip_text = true
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|
@ -434,7 +434,7 @@ class Window_Message < Window_Selectable
|
||||||
self.pause = true
|
self.pause = true
|
||||||
|
|
||||||
# Advance/Close message
|
# Advance/Close message
|
||||||
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL)
|
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
|
||||||
if @text.length <= 0
|
if @text.length <= 0
|
||||||
terminate_message
|
terminate_message
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue