Project1

标题: 请问截图中那个红底的窗口背景的实现方法 [打印本页]

作者: alianlord    时间: 2020-10-23 14:47
标题: 请问截图中那个红底的窗口背景的实现方法
本帖最后由 alianlord 于 2020-10-23 14:50 编辑

我用过窗口的tone属性,但是红色背景一闪就不见了
作者: alexncf125    时间: 2020-10-23 17:27
本帖最后由 alexncf125 于 2020-10-23 17:38 编辑

xxxxxxxxxx.fill_rect(x, y, width, height, color)

比如:
class Window_Gold < Window_Base
  def refresh
    contents.clear
    color = text_color(18)
    color.alpha = 100
    contents.fill_rect(0, 0, window_width, fitting_height(1), color)
    draw_currency_value(value, currency_unit, 4, 0, contents.width - 8)
  end
end

效果:


然而我也不知道如何应用在选项上~~
作者: alianlord    时间: 2020-10-23 18:07
alexncf125 发表于 2020-10-23 17:27
xxxxxxxxxx.fill_rect(x, y, width, height, color)

比如:

多谢指导。现在我有思路了。




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1