Window_ScrollText ⇐ Window_Base
Kind: global class
Extends: Window_Base
- Window_ScrollText ⇐
Window_Base- new Window_ScrollText()
- .initialize()
- .update()
- .startMessage()
- .refresh()
- .contentsHeight() ⇒
number - .updateMessage()
- .scrollSpeed() ⇒
number - .isFastForward() ⇒
boolean - .fastForwardRate() ⇒
number - .terminateMessage()
new Window_ScrollText()
显示滚动文本的窗口,无边框显示,但为了方便起见作为窗口处理
Window for displaying scrolling text. No frame is displayed, but it is handled as a window for convenience
window_ScrollText.initialize()
初始化滚动文本窗口
Initialize the scroll text window
Kind: instance method of Window_ScrollText
window_ScrollText.update()
更新窗口
Update window
Kind: instance method of Window_ScrollText
window_ScrollText.startMessage()
开始显示消息
Start displaying message
Kind: instance method of Window_ScrollText
window_ScrollText.refresh()
刷新窗口
Refresh window
Kind: instance method of Window_ScrollText
window_ScrollText.contentsHeight() ⇒ number
获取内容高度
Get contents height
Kind: instance method of Window_ScrollText
Returns: number - 内容高度 - Contents height
window_ScrollText.updateMessage()
更新消息
Update message
Kind: instance method of Window_ScrollText
window_ScrollText.scrollSpeed() ⇒ number
获取滚动速度
Get scroll speed
Kind: instance method of Window_ScrollText
Returns: number - 滚动速度 - Scroll speed
window_ScrollText.isFastForward() ⇒ boolean
检查是否快进
Check if fast forward
Kind: instance method of Window_ScrollText
Returns: boolean - 是否快进 - Whether fast forward
window_ScrollText.fastForwardRate() ⇒ number
获取快进倍率
Get fast forward rate
Kind: instance method of Window_ScrollText
Returns: number - 快进倍率 - Fast forward rate
window_ScrollText.terminateMessage()
结束消息
Terminate message
Kind: instance method of Window_ScrollText