赞 | 0 |
VIP | 0 |
好人卡 | 13 |
积分 | 1 |
经验 | 4374 |
最后登录 | 2012-6-26 |
在线时间 | 57 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 57 小时
- 注册时间
- 2009-7-9
- 帖子
- 124
|
3楼
楼主 |
发表于 2010-7-30 09:24:42
|
只看该作者
#--------------------------------------------------------------------------
# ○ 设置呼出对话框
#--------------------------------------------------------------------------
def set_fukidasi(x, y, width, height)
# $mes_id 为空的时候,不显示呼出对话框
if $mes_id == nil or $mes_id == ""
del_fukidasi
reset_window
else
# 不显示暂停标志
self.pause = false
# 取得对话框位置
pos = get_fuki_pos(width, height)
x = pos[0]
y = pos[1]
skin = FUKI::FUKI_SKIN_NAME != "" ? FUKI::FUKI_SKIN_NAME : $game_system.windowskin_name
# 生成呼出对话框
self.windowskin = RPG::Cache.windowskin(skin)
self.x = x
self.y = y
self.height = height
self.width = width
self.contents.dispose
self.contents = Bitmap.new(width - 32, height - 32)
self.back_opacity = FUKI::FUKI_OPACITY
self.contents.clear
self.contents.font.color = normal_color
self.contents.font.size = FUKI::MES_FONT_SIZE
应该就在这里改了,要怎么像头像一样生成图象并且设置在主对话框内.脚本高手帮我写一样.. |
|