XP 스크립트

http://www.dubealex.com/asylum/index.php?showtopic=9830
여러 개의 png파일을 사용한 애니메이션 처리. 단, 이 스크립트는 암호화된 프로젝트에서는 정상적으로 동작하지 않을 수 있습니다.


#==============================================================================
# ** Quick Animations
#==============================================================================
# SephirothSpawn
# Version 1
# 2006-07-06
#------------------------------------------------------------------------------
# * Instructions
#
# ~ Creating Animation
#
# = Quick_Animation.new(directory, loop, frame_skip, viewport)
#
# directory : Directory in your Projects Folder for the image
# loop : true (image loops) or false (image plays and disposes itself)
# frame_skip : number of frames to proceed to next image
# viewport : viewport of image
#
# ~ Object must update, or frames won't pass through.
# ~ Don't update a object after it disposes. A quick way around of this
#
#.update unless.nil? ||.disposed?
#==============================================================================

#------------------------------------------------------------------------------
# * SDK Log Script-x
#------------------------------------------------------------------------------
SDK.log('Quick Animations', 'SephirothSpawn', 1, '2006-07-06')

#------------------------------------------------------------------------------
# * Begin SDK Enable Test
#------------------------------------------------------------------------------
if SDK.state('Quick Animations') == true

#==============================================================================
# ** Quick_Animation
#==============================================================================

class Quick_Animation < Sprite
#--------------------------------------------------------------------------
# * Object Initialization
# ~ directory : foldername in Pictures Folder
# ~ loop : true or false to loop or not loop image
# ~ frame_skip : number of frames to advance next image
# ~ viewport : viewport on window
#--------------------------------------------------------------------------
def initialize(directory, loop = true, frame_skip = 10, viewport = nil)
super(viewport)
# Stores Directory, Loop & Frame Skip Count
@directory, @loop, @frame_skip = directory, loop, frame_skip
# Starts Index Count
@index = 0
# Updates Bitmap
update
end
#--------------------------------------------------------------------------
# * Frame Update
#--------------------------------------------------------------------------
def update
# Stop Unless Frame Skip Reached
return unless Graphics.frame_count % @frame_skip == 0
# Adds 1 to the index
@index += 1
# If not Last Image
if Dir.entries(@directory).include?("#{@index}.png")
# Sets Bitmap
self.bitmap = RPG::Cache.load_bitmap(@directory, @index.to_s)
# If Last Image Already Displayed
else
# If Loop Image
if @loop
# Reset Index & Update Bitmap
@index = 0
update
# If No Loop
else
# Delete Image
self.dispose
end
end
end
end

#--------------------------------------------------------------------------
# * End SDK Enable Test
#--------------------------------------------------------------------------
end

Who's 백호

?

이상혁입니다.

http://elab.kr


List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 6159
461 기타 디버그 윈도우 강화! 3 file 백호 2009.02.21 1550
460 스킬 랜덤 스킬 스크립트 2 file 백호 2009.02.21 978
459 전투 랜덤 전투음악 by Fomar0153@rmxp.org 1 백호 2009.02.22 1008
458 기타 랜덤 지하 감옥 작성 스크립트 1 file 백호 2009.02.21 1338
457 전투 랜덤으로 적을 출현시키는 스크립트 백호 2009.02.21 1216
456 레벨 9999 스크립트 23 WMN 2008.03.17 2218
455 전투 레벨 상승 화면 개조 스크립트 4 file 백호 2009.02.21 1884
454 기타 레벨, 능력치 무한 스크립트 3 백호 2009.02.22 1712
453 기타 레벨,능력치 9999 3 백호 2009.02.22 1596
452 기타 레벨9999만들기스크립 23 해파리 2009.04.10 3344
451 기타 레벨9999스크립트 4 백호 2009.02.21 1151
450 전투 레벨업 시스템 제거 스크립트 file 백호 2009.02.21 1117
449 기타 레벨업스크립트(xp) 2 게임을만들자! 2014.08.05 1688
448 전투 레벨업시 능력치 표시 2 백호 2009.02.22 1621
447 기타 레벨업시 전회복 by ccoa 8 백호 2009.02.22 2514
446 기타 레벨업포인트 3 백호 2009.02.22 1692
445 기타 레벨을 표시해주는 스크립트 5 백호 2009.02.22 2403
444 저장 렉없는 자동세이브 스크립트 2 백호 2009.02.22 1591
443 저장 렉없는 자동세이브(중복임??) 4 캉쿤 2011.09.12 1986
442 저장 렉없은 자동 세이브 15 알피지GM 2010.03.07 2328
Board Pagination Prev 1 ... 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 ... 52 Next
/ 52