기타

Tetris Attack by trickster

by 백호 posted Feb 22, 2009
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
http://www.rmxp.org/forums/showthread.php?t=2881
(내용을 보려면 로그인 필요)

스크립트는 데모를 참조하기 바랍니다.








스크립트 삽입과 편집, 사용은 데모를 참조하고, 호출은:
$scene = Scene_PanelAttack.new(special/nil, true/false, speed, inc_speed, colors, true/false, type)
speed - 초기 속도
inc_speed - 게임을 하면서 속도가 증가되기전 클리어하는데 필요한 패널 수(뭔 소리냐...--)
type - 결과창에 뜨는 모드 이름
- 연습모드:
$scene = Scene_PanelAttack.new(special, false, 1, 100, 5, false, type)
or
$scene = Scene_PanelAttack.new(special, false)
- 무한모드:
$scene = Scene_PanelAttack.new(nil, true, speed, inc_speed, colors, false, type)
- 시간제한모드:
$scene = Scene_PanelAttack.new(nil, true, speed, inc_speed, colors, true, type)

- 미니게임에 사용되는 음악은 $game_system.music 에 지정
- 미니게임의 배경은 $game_system.background 에 지정
- 미니게임에 사용되는 패널은 $game_system.panels 에 지정
- 시간제한모드에서 시간제한은 $game_system.time_left 에 지정