这里要改正则表达式中的内容了
if c == "\n"
# 刷新选择项及光标的高
if y >= $game_temp.choice_start
@cursor_width = [@cursor_width, x].max
end
# y 加 1
# y += 1 这里是有了\n就换行
# x = 0 另起一行 # 移动到选择项的下一行
if y >= $game_temp.choice_start
x = 8
end
# 下面的文字
next
end
# 描绘文字
self.contents.draw_text(4 + x, 32 * y, 40, 32, c)
# x 为要描绘文字的加法运算
x += self.contents.text_size(c).width
end
你改改红色的地方就可以看到字全显了,细节的地方还要自已想办法了
作者: Wind2010 时间: 2011-6-17 12:20
第二个问题其实只需要这样: