本帖最后由 月华风 于 2015-3-7 17:28 编辑
楼主 要的可是下图??
并附上Logo脚本
#============================================================================== # ** Logo #------------------------------------------------------------------------------ # You cannot remove it in the Lite version. #============================================================================== def show_logo sprite = Sprite.new Graphics.fadeout(0) sprite.bitmap = Cache.system('Logo1') Graphics.fadein(30) Graphics.wait(30) Graphics.fadeout(30) sprite.bitmap = Cache.system('Logo2') Graphics.fadein(30) Graphics.wait(30) Graphics.fadeout(30) end show_logo unless $TEST
#==============================================================================
# ** Logo
#------------------------------------------------------------------------------
# You cannot remove it in the Lite version.
#==============================================================================
def show_logo
sprite = Sprite.new
Graphics.fadeout(0)
sprite.bitmap = Cache.system('Logo1')
Graphics.fadein(30)
Graphics.wait(30)
Graphics.fadeout(30)
sprite.bitmap = Cache.system('Logo2')
Graphics.fadein(30)
Graphics.wait(30)
Graphics.fadeout(30)
end
show_logo unless $TEST
|