赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 515 |
最后登录 | 2012-8-5 |
在线时间 | 14 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 14 小时
- 注册时间
- 2012-5-16
- 帖子
- 18
|
请问下面这个动画怎么在这里面显示出来 我让这动画在里面循环显示 可是背景的
东西暂停了 还有当关闭这个窗口时怎么把他们 关掉- 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
复制代码 |
|