赞 | 0 |
VIP | 164 |
好人卡 | 42 |
积分 | 1 |
经验 | 25008 |
最后登录 | 2017-9-16 |
在线时间 | 1141 小时 |
Lv1.梦旅人 梦·贤者
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 1141 小时
- 注册时间
- 2007-12-15
- 帖子
- 4100
|
class Game_Character
attr_accessor :opacity # 不透明度
end
#地图
class Scene_Map
alias :state_main :main
def main
@states = $game_actors[1].states #获得1号角色状态
state_main
end
alias :state_update :update
def update
if not @states.include?(50) and $game_player.opacity != 255
$game_player.opacity = 255
state_update
return
end
for i in [email protected] - 1
if @states == 50 and #检查状态编号假设你是50,你可以自定义
@opacity != $game_player.opacity
$game_player.opacity = 100 #改变主角透明度100
@opacity = $game_player.opacity
end
end
state_update
end
end 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|