赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 17573 |
最后登录 | 2020-3-13 |
在线时间 | 304 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 138
- 在线时间
- 304 小时
- 注册时间
- 2014-4-11
- 帖子
- 419
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
报错的地方是这里- #--------------------------------------------------------------------------
- # ● 计算窗口内容的高度
- #--------------------------------------------------------------------------
- def contents_height
- [super - super % item_height, row_max * item_height].max
- end
复制代码 脚本修改的部分是显示的 原来是在右下角显示然后淡去 现在改成从屏幕中间飘起来慢慢变淡的样子了 改完之后就报错
而且不是次次都报 是有时候会报 困扰很久的问题了 谁要是能帮我解决感激不尽{:2_276:}- #--------------------------------------------------------------------------
- # update_visible_counter
- #--------------------------------------------------------------------------
- def update_visible_counter
- return if @visible_counter <= 0
- @visible_counter -= 1
- end
- #--------------------------------------------------------------------------
- # update_contents_opacity
- #--------------------------------------------------------------------------
- def update_contents_opacity
- return if @visible_counter > 0
- return if self.contents_opacity <= 0
- self.contents_opacity -= YEA::EVENT_WINDOW::WINDOW_FADE
- end
- #--------------------------------------------------------------------------
- # update_contents_y
- #--------------------------------------------------------------------------
- def update_contents_y
- return if @visible_counter > 0
- return if self.contents_opacity <= 0
- self.y -= YEA::EVENT_WINDOW::WINDOW_MOVE
- end
- #--------------------------------------------------------------------------
- # instant_hide
- #--------------------------------------------------------------------------
- def instant_hide
- @visible_counter = 0
- self.contents_opacity = 0
- end
复制代码 附件附上完整脚本 |
|