赞 | 1 |
VIP | 255 |
好人卡 | 52 |
积分 | 1 |
经验 | 77416 |
最后登录 | 2016-1-18 |
在线时间 | 1269 小时 |
Lv1.梦旅人 薄凉看客
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 1269 小时
- 注册时间
- 2010-6-20
- 帖子
- 1316
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
直接贴在事件脚本中就可以!!!- w = Window_Base.new(200, 20, 240, 64)
- w.opacity = 0;w.contents_opacity = 0
- w.contents = Bitmap.new(240-32, 64-32)
- w.contents.font.color = Color.new(50,
- 255, 80, 255);tex = "显示的文章"
- w.contents.draw_text(4, 0, w.width, 32, tex)
- for i in 0..20;Graphics.update;
- w.opacity += 10;w.contents_opacity += 10;
- w.y += 7;end;
- for i in 0..50;Graphics.update;end
- for i in 0..20;Graphics.update;w.opacity -=
- 10;w.contents_opacity -= 10;end;w.dispose
复制代码 |
评分
-
查看全部评分
|