Project1
标题:
如何让对话框中的文字逐字显示?
[打印本页]
作者:
无忧谷主幻
时间:
2015-5-2 21:04
标题:
如何让对话框中的文字逐字显示?
对话框加强脚本就算了,否则会将工程中好不容易调好的对话框大小,位置等属性覆盖住
作者:
芯☆淡茹水
时间:
2015-5-3 08:27
# 如果单是描绘文字的话
#--------------------------------------------------------------------------
def initialize
...........
...........
...........
@count = 0
@text = $game_temp.message_text.scan(/./)
@ax = @ay = 0
end
def update
unless @text.empty?
@count += 1
draw_message
return
end
............
............
............
............
end
def draw_message
if @count % 5 == 0
txt = @text.shift
cx = contents.text_size(txt).width
self.contents.draw_text(ax, ay, cx, 32, txt)
ax += cx
if ax > self.width - 32
ax = 0
ay += 32
end
end
end
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1