init method
Implementation
@override
void init() {
clip().newPalette();
clip().setPaletteColor( 0, 0x000000 );
clip().setPaletteColor( 1, 0xFFFFFF );
clip().setValue( '0', 80 ); // 迷路の横の大きさ
clip().setValue( '1', 80 ); // 迷路の縦の大きさ
clip().setValue( '2', 0 ); // 前景色
clip().setValue( '3', 1 ); // 背景色
clip().procScript( script[0] ); // 初期化
setFrameTime( 0 );
}