- 注册时间
- 2007-9-11
- 最后登录
- 2019-5-19
③业余
- 积分
- 189
|

楼主 |
发表于 2007-9-12 21:39:28
|
显示全部楼层
大概是这样吧....但是350+张图...个人能力有限
朋友能否帮忙写个FOR循环...万分感激
-----------------
class Scene_CG
def initialize
@sprite = Sprite.new
@sprite.bitmap = Bitmap.new("Graphics/Pictures/1 (帧 000).jpg")
@sprite.x =0
@sprite.y = 0
@sprite.bitmap = Bitmap.new("Graphics/Pictures/1 (帧 001).jpg")
@sprite.x =0
@sprite.y = 0
Graphics.update
.
.
.
.
Graphics.update
$game_temp.map_bgm = $game_system.playing_bgm
opening_bgm=RPG::AudioFile.new("开场CG.mp3", 100, 100)
$game_system.bgm_play(opening_bgm)
end
end |
|