Project1

标题: 在哪可以关闭VA自带的矩形光标的闪烁效果? [打印本页]

作者: 雷影    时间: 2015-8-6 16:58
标题: 在哪可以关闭VA自带的矩形光标的闪烁效果?
一个小问题,自带的矩形光标一闪一闪的,在哪关闭闪烁的效果??
作者: 喵呜喵5    时间: 2015-8-6 21:54
未经过详细测试,可能存在潜在BUG:
  1. class Window_Base
  2.   alias m5_20150806_active active
  3.   def active
  4.     m5_20150806_active
  5.     @m5_20150806_active
  6.   end
  7.   alias m5_20150806_activate activate
  8.   def activate
  9.     m5_20150806_activate
  10.     @m5_20150806_active = true
  11.     self.active = false
  12.     self
  13.   end
  14.   alias m5_20150806_deactivate deactivate
  15.   def deactivate
  16.     m5_20150806_deactivate
  17.     @m5_20150806_active = self.active = false
  18.     self
  19.   end
  20. end
复制代码

作者: 墨凌羽    时间: 2015-8-6 22:08
喵呜喵5 发表于 2015-8-6 15:54
未经过详细测试,可能存在潜在BUG:

噗 deactivate里的active本身就是false 另外在窗口实例对象生成后直接调用其active属性并赋值也可以。不过貌似这个等于false后很微妙




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