赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 498 |
最后登录 | 2013-8-6 |
在线时间 | 19 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 19 小时
- 注册时间
- 2013-7-21
- 帖子
- 18
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 KISS_COMPUTER 于 2013-7-26 09:36 编辑
#--------------------------------------------------------------------------
# ● 翻页处理
#--------------------------------------------------------------------------
def new_page(text, pos)
contents.clear
################
face_name = $game_message.face_name
face_index = $game_message.face_index
source = Cache.face(face_name)
rect = Rect.new(face_index % 4 * 96, face_index / 4 * 96, 96, 96)
bitmap = Bitmap.new(96, 96)
bitmap.blt(0, 0, source, rect)
sprite = Sprite.new
sprite.x = 0
sprite.y = Graphics.height - 96
sprite.z = 1000
sprite.bitmap = bitmap
source.dispose
bitmap.dispose
################
reset_font_settings
pos[:x] = new_line_x
pos[:y] = 0
pos[:new_x] = new_line_x
pos[:height] = calc_line_height(text)
clear_flags
end
#####行内为改动的部分,请指教是哪里出现了问题,O(∩_∩)O谢谢 |
|