赞 | 0 |
VIP | 1 |
好人卡 | 2 |
积分 | 0 |
经验 | 1150 |
最后登录 | 2012-3-1 |
在线时间 | 16 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 49
- 在线时间
- 16 小时
- 注册时间
- 2011-11-27
- 帖子
- 46
|
- class Game_Screen
- alias _0frame_start_tone_change start_tone_change
- def start_tone_change(tone,duration)
- if $game_switches[111] == true
- @tone = tone.clone
- $game_switches[111] = false
- else
- _0frame_start_tone_change(tone,duration)
- end
- end
- end
复制代码 11行脚本轻松解决![](static/image/smiley/yct/A069.gif)
把4行和6行的111改成要使用的开关ID,之后打开开关的时候调用更改画面色调就会瞬间更改。会自动关闭开关的哦![](static/image/smiley/yct/A014.gif)
|
|