Project1

标题: 自制窗口中怎么显示动画 [打印本页]

作者: 依然1    时间: 2012-6-28 09:45
标题: 自制窗口中怎么显示动画
请问下面这个动画怎么在这里面显示出来   我让这动画在里面循环显示  可是背景的
   东西暂停了   还有当关闭这个窗口时怎么把他们  关掉
  1. class Window_宠物信息 < Window_Base
  2. #--------------------------------------------------------------------------
  3. # ● 初始化对像
  4. #--------------------------------------------------------------------------
  5. def initialize
  6.    super(160, 43, 320, 192)
  7.    self.contents = Bitmap.new(width - 32, height - 32)
  8.    
  9.    
  10.   
  11.    
  12. ######################################################
  13.         @标题 = RPG::Sprite.new
  14.         @标题.loop_animation($data_animations[2])
  15.         @标题.x = 55
  16.         @标题.y = 95
  17. ######################################################
  18.         
  19.         
  20.    refresh
  21. end
  22. #--------------------------------------------------------------------------
  23. # ● 刷新
  24. #--------------------------------------------------------------------------
  25. def refresh
  26.    self.contents.clear
  27.    self.contents.font.size = 17
  28.    self.contents.font.color = Color.new(0,0, 0, 255)
  29.    等级a = $game_variables[73]
  30. 经验 = $game_variables[77]
  31. #==============================================================================   
  32.    self.contents.draw_text(151, 48, 100, 20,等级a.to_s)
  33.    self.contents.draw_text(151, 98, 100, 20,经验a.to_s)
  34. end

  35. #--------------------------------------------------------------------------
  36. # ● 刷新画面
  37. #--------------------------------------------------------------------------
  38. def update
  39.    super
  40.      refresh
  41.   end
  42. end
复制代码
dsu_plus_rewardpost_czw
作者: chd114    时间: 2012-6-28 21:54
自制窗口是无法显示动画的因为显示了如果不是透明菜单你也看不到




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