|
本帖最后由 百里_飞柳 于 2018-6-21 13:02 编辑
恰好我之前才翻过自己买过的dlc,里面有随慈善包一起的这个系统
稍微看了下,是因为窗口的contents生成时高度不足导致的
在 Window_NewSelectable 类的最后的end之后加上就好
- #--------------------------------------------------------------------------
- # □ BUG修复:窗口内容高度不足 by 老鹰
- #--------------------------------------------------------------------------
- class Window_NewSelectable < Window_Selectable
- #--------------------------------------------------------------------------
- # refresh all contents
- #--------------------------------------------------------------------------
- alias eagle_debug_lunatic_refresh refresh
- def refresh
- if contents
- contents.dispose
- self.contents = Bitmap.new(contents_width, contents_height)
- end
- eagle_debug_lunatic_refresh
- end
- end
复制代码 |
评分
-
查看全部评分
|