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
74 기타 Seph's Test Bed v.4 (파일첨부) (SDK2.x용) Alkaid 2010.10.08 1533
73 기타 Selected phyolomortis.com scripts 1 file 백호 2009.02.22 789
72 기타 sandgolem Script Archive (RMXP SDK 1.5 이상 필요) file Alkaid 2011.02.17 1453
71 기타 rpgxp [체험판] 입니다. 6 file 인웅이 아부지 2010.01.12 2289
70 기타 RPG 만들기 XP의 숨겨진 모듈/클래스 재정의 스크립트 모음 1 Alkaid 2013.08.31 1913
69 기타 RM2kXP file 습작 2014.03.17 1552
68 기타 RM2K Facesets, Inn & Windowskin Colors by DerVVulfman@rmxp.org 1 file 백호 2009.02.22 866
67 기타 Resolution Changer Ultimate by Zeus81 7 file 습작 2013.05.05 1162
66 기타 Realistic Shop by MeisMe@rmxp.org 3 file 백호 2009.02.22 1292
65 기타 Real-Time Day Night 3 백호 2009.02.22 751
64 기타 Rataime's Multi Demo 1 file 백호 2009.02.22 834
63 기타 Random Character Generator by SephirothSpawn (SDK호환) 1 백호 2009.02.22 1040
» 기타 Quick Animations by SephirothSpawn (SDK호환) 백호 2009.02.22 851
61 기타 Project RGSS3 by joe5491 6 습작 2013.05.06 1970
60 기타 Phylomortis.com 스크립트들. file Alkaid 2010.09.02 1775
59 기타 NPC Details Window by SephirothSpawn (SDK호환) 1 file 백호 2009.02.22 1209
58 기타 Note Editor for RMXP by NEWOLD 1 Alkaid 2012.01.15 2101
57 기타 Near Fantastica's SDK Test Bed 3 file 백호 2009.02.22 885
56 기타 My메세지(메세지 출력 스크립트) 1 file 백호 2009.02.22 1533
55 기타 Multiple Languages v2 by SephirothSpawn (SDK호환) file 백호 2009.02.22 1404
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 Next
/ 13