Project1

标题: RMXP全屏动画问题 [打印本页]

作者: 苏寒霜    时间: 2013-3-12 09:44
标题: RMXP全屏动画问题
本帖最后由 苏寒霜 于 2013-3-19 18:28 编辑

使用公共事件播放连续图片制作的全屏动画怎样才能让它不卡呢,特别是图片较多的时候?

作者: 你最珍贵    时间: 2013-3-12 22:11
试试用防卡脚本
  1. #==============================================================================
  2. # Módulo AntiLag
  3. #==============================================================================
  4.     module AntiLag
  5.       SPC = Win32API.new("kernel32", "SetPriorityClass", "pi", "i")
  6.       @@high_priority = false
  7.       def self.high_priority ; @@high_priority; end
  8.       def self.high_priority?; @@high_priority; end
  9.       def self.high_priority=(valor)
  10.         return if @@high_priority == valor
  11.         @@high_priority = valor
  12.         if @@high_priority
  13.           SPC.call(-1, 0x80)
  14.           return
  15.         end
  16.         SPC.call(-1, 0x20)
  17.       end
  18.     end
  19.     AntiLag.high_priority = true
复制代码

作者: 苏寒霜    时间: 2013-3-19 18:27
你最珍贵 发表于 2013-3-12 22:11
试试用防卡脚本

虽然看起来效果不是很明显,不过还是谢谢你




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