Project1
标题:
如何实现自动对话??
[打印本页]
作者:
11210317
时间:
2014-2-3 18:59
标题:
如何实现自动对话??
例如在剧情中,怎么使对话不用按空格键就可以让对话进行下去?正在填坑 TAT 求指点,谢谢!
作者:
天地有正气
时间:
2014-2-3 20:59
看看这个?
http://rpg.blue/thread-206814-1-1.html
作者:
恐惧剑刃
时间:
2014-2-3 22:40
class Window_Message < Window_Selectable
alias initialize_next_text_old initialize
def initialize
initialize_next_text_old
@frame = 100 # 自动关闭帧数
@frame_copy = @frame
end
alias update_next_text_old update
def update
@frame_copy -= 1
if @frame_copy <= 0
terminate_message
@frame_copy = @frame
end
update_next_text_old
end
end
复制代码
作者:
11210317
时间:
2014-2-4 19:23
天地有正气 发表于 2014-2-3 20:59
看看这个?http://rpg.blue/thread-206814-1-1.html
谢谢啦,终于可以继续填坑了
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1