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 7308
461 전투 KGC_BattlerEffect(버틀러 효과) 2 file 백호 2009.02.22 1968
460 메뉴 개별 메뉴 호출 단축키 스크립트 5 file 백호 2009.02.21 1973
459 그래픽 Weather Creator 1.0 by ForeverZer0 2 file Alkaid 2011.01.22 1976
458 저장 세이브 & 로드 화면 개조 스크립트 file 백호 2009.02.21 1977
457 기타 [신기술 체험] 오투잼 스크립트 7 file 백호 2009.02.22 1977
456 HUD 맵 이름 뛰우기 10 WMN 2008.03.17 1980
455 저장 심플 세이브 로드(1개의 세이브 사용하기) 3 백호 2009.02.22 1981
454 메뉴 링 메뉴 Edited by Hypershadow180@rmxp.net 1 file 백호 2009.02.22 1982
453 이동 및 탈것 Super Simple Vehicle System Enhanced 8.0 by DerVVulfman 1 Alkaid 2010.12.12 1982
452 키입력 Glitchfinder's Input Modules (XP/VX 공용) 2 Alkaid 2011.03.19 1993
451 상태/속성 KGC_StateIcon(스테이터스 아이콘 표시) 2 file 12345678 2010.02.03 1994
450 그래픽 MAWS: Modified Advanced Weather Script 1.2 by Agckuu Coceg 2 file Alkaid 2010.09.13 1996
449 기타 Project RGSS3 by joe5491 6 습작 2013.05.06 2001
448 기타 동료들이 기차처럼 줄줄 따라온다!? 7 file 백호 2009.02.21 2002
447 스킬 스킬 레벨 스크립트 # 번역 진행중 6 빗자루씨 2010.02.11 2003
446 저장 렉없는 자동세이브(중복임??) 4 캉쿤 2011.09.12 2004
445 장비 전투중에 장비변경 from RGSS Wiki 1 백호 2009.02.22 2013
444 저장 링메뉴에 빠져 봅시다 - 링메뉴의 세이브시 팅김이 사라지는 방법 !! 3 file 백호 2009.02.21 2014
443 저장 Improved Save by gerrtunk 2 file Alkaid 2010.10.13 2014
442 기타 [All RGSS] 윈도우 커서 숨기기/보이기 1 file Cheapmunk 2014.03.02 2018
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