赞 | 1 |
VIP | 68 |
好人卡 | 15 |
积分 | 4 |
经验 | 16522 |
最后登录 | 2014-7-3 |
在线时间 | 142 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 390
- 在线时间
- 142 小时
- 注册时间
- 2008-11-20
- 帖子
- 231
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
各位大大,偶是新手,在脚本方面!有没有办法让开关控制一个脚本的使用与否!
以下是具体情况:偶想做出对话框的头像在左在右的的效果,需要使用到控制用哪个
Window_Message ,
Window_Message(1)中
def initialize
super(0, 310, 640, 175)
self.contents = Bitmap.new(width - 32, height - 32)
self.visible = false
self.z = 9998
@fade_in = false
@fade_out = false
@contents_showing = false
@cursor_width = 0
self.active = false
self.index = -1
end
Window_Message(2)中
def initialize
super(165, 310, 640, 175)
self.contents = Bitmap.new(width - 32, height - 32)
self.visible = false
self.z = 9998
@fade_in = false
@fade_out = false
@contents_showing = false
@cursor_width = 0
self.active = false
self.index = -1
end
这样就有左头像的位置了不会当挡字了! |
评分
-
查看全部评分
|