赞 | 0 |
VIP | 186 |
好人卡 | 0 |
积分 | 1 |
经验 | 5829 |
最后登录 | 2012-12-21 |
在线时间 | 83 小时 |
Lv1.梦旅人 龙皇
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 83 小时
- 注册时间
- 2007-8-8
- 帖子
- 2956
|
帧数的思路LZ你想到了嘛!!
class Game_System
#--------------------------------------------------------------------------
# ● 播放图片
#--------------------------------------------------------------------------
def player_photo(max_number, photo_name,time=1,x=0,y=0)
bsprite = Sprite.new
for number in 1..max_number
bsprite.bitmap = Bitmap.new("Graphics/Pictures/#{photo_name}#{number}")
bsprite.x = x
bsprite.y = y
for i in 0...time
Graphics.update
end
end
bsprite.bitmap.dispose
bsprite.dispose
end
end
$game_system.player_photo(图片数量,"name",帧数,X坐标,Y坐标) 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|