Project1
标题: 自制窗口中怎么显示动画 [打印本页]
作者: 依然1 时间: 2012-6-28 09:45
标题: 自制窗口中怎么显示动画
请问下面这个动画怎么在这里面显示出来 我让这动画在里面循环显示 可是背景的
东西暂停了 还有当关闭这个窗口时怎么把他们 关掉- class Window_宠物信息 < Window_Base
- #--------------------------------------------------------------------------
- # ● 初始化对像
- #--------------------------------------------------------------------------
- def initialize
- super(160, 43, 320, 192)
- self.contents = Bitmap.new(width - 32, height - 32)
-
-
-
-
- ######################################################
- @标题 = RPG::Sprite.new
- @标题.loop_animation($data_animations[2])
- @标题.x = 55
- @标题.y = 95
- ######################################################
-
-
- refresh
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- self.contents.font.size = 17
- self.contents.font.color = Color.new(0,0, 0, 255)
- 等级a = $game_variables[73]
- 经验 = $game_variables[77]
- #==============================================================================
- self.contents.draw_text(151, 48, 100, 20,等级a.to_s)
- self.contents.draw_text(151, 98, 100, 20,经验a.to_s)
- end
- #--------------------------------------------------------------------------
- # ● 刷新画面
- #--------------------------------------------------------------------------
- def update
- super
- refresh
- end
- end
复制代码