赞 | 0 |
VIP | 13 |
好人卡 | 13 |
积分 | 1 |
经验 | 7273 |
最后登录 | 2014-2-17 |
在线时间 | 37 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 37 小时
- 注册时间
- 2012-7-30
- 帖子
- 147
|
你是说类似h游戏前面日本伦理协会警告和全内容架空那种东西?
在scene_title中- def create_title_graphic
- @sprite = Sprite.new
- @sprite.bitmap = Cache.system("shit1")
- Graphics.transition(160)
- Graphics.wait(200)
- Graphics.fadeout(90)
- @sprite.bitmap = Cache.system("shit2")
- Graphics.fadein(90)
- Graphics.wait(160)
- Graphics.fadeout(90)
- @sprite.bitmap = Cache.system("Title")
- Graphics.fadein(90)
- end
复制代码 shit1和shit2是在graphics/system内的图片名。
核心语句是- @sprite.bitmap = Cache.system("shit2")
- Graphics.fadein(90)
- Graphics.wait(160)
- Graphics.fadeout(90)
复制代码 想显示几个图片自己加几个就行了。 |
评分
-
查看全部评分
|