赞 | 287 |
VIP | 11 |
好人卡 | 74 |
积分 | 226 |
经验 | 281171 |
最后登录 | 2024-11-17 |
在线时间 | 9415 小时 |
Lv5.捕梦者 (暗夜天使) 只有笨蛋才会看到
- 梦石
- 1
- 星屑
- 21636
- 在线时间
- 9415 小时
- 注册时间
- 2012-6-19
- 帖子
- 7118
|
- =begin
- ===============================================================================
- 深水游泳池 By喵呜喵5
- ===============================================================================
- 【说明】
- 通过本脚本可以定义流体属性图块遮挡玩家行走图的大小及被遮挡部分的透明度
-
- =end
- module M5Pool
- #==============================================================================
- # 设定部分
- #==============================================================================
- HEI = 20
-
- #这里设置遮挡部分的大小
-
-
- OPA = 20
-
- #这里设置被遮挡部分的透明度
-
-
- #==============================================================================
- # 设定结束
- #==============================================================================
- end
- #==============================================================================
- # 脚本部分
- #==============================================================================
- class Game_CharacterBase
- include M5Pool
- attr_reader :bush_opacity
- def update_bush_depth
- if normal_priority? && !object_character? && bush? && !jumping?
- if !moving?
- @bush_depth = HEI
- @bush_opacity = OPA
- end
- else
- @bush_depth = 0
- end
- end
- end
- class Sprite_Character < Sprite_Base
- alias m5_update_other update_other
- def update_other
- m5_update_other
- self.bush_opacity = @character.bush_opacity if @character.bush_opacity
- end
- end
复制代码 |
评分
-
查看全部评分
|