Project1

标题: 删除战斗效果 [打印本页]

作者: 13701225339    时间: 2010-8-8 17:09
标题: 删除战斗效果
请问XP默认的把敌人打死后会显示一段渐变后消失,怎么才能让他直接消失呢
作者: asperta    时间: 2010-8-9 15:21
  1. module RPG
  2.   class Sprite < ::Sprite
  3.     def collapse
  4.       self.blend_type = 1
  5.       self.color.set(255, 64, 64, 255)
  6.       self.opacity = 0
  7.       @_collapse_duration = 0
  8.       @_whiten_duration = 0
  9.       @_appear_duration = 0
  10.       @_escape_duration = 0
  11.     end
  12.   end
  13. end
复制代码





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