//スタッフクレジット //作品を作る際にどのような役割分担で作業を行ったか //誰に協力してもらったのか、素材はどこから集めたのか・・・など void ending() { int scroll = 0; background(0); fill(#ff0000); textAlign(CENTER); textSize(50); text("単位ゲットおめでとう!!", 300, ed_y); scroll +=150; fill(255); text("スタッフクレジット", 300, ed_y + scroll); scroll+=300; textSize(30); text("~~登場キャラモデル~~", 300, ed_y + scroll); scroll+=200; text("フジ・・・藤代健吾", 300, ed_y + scroll); scroll+=100; text("テツロー・・・北原鉄朗(黙認)", 300, ed_y + scroll); scroll+=300; text("~~制作スタッフ~~", 300, ed_y + scroll); scroll+=200; text("○立案○", 300, ed_y + scroll); scroll+=50; text("豊田裕也", 300, ed_y + scroll); scroll+=150; text("○企画書○", 300, ed_y + scroll); scroll+=50; text("別所一洸", 300, ed_y + scroll); scroll+=100; text("○仕様書作成○", 300, ed_y + scroll); scroll+=50; text("別所一洸", 300, ed_y + scroll); scroll+=150; text("○シナリオ○", 300, ed_y + scroll); scroll+=50; text("長谷川文", 300, ed_y + scroll); scroll+=50; text("豊田裕也", 300, ed_y + scroll); scroll+=150; text("○キャラクタグラフィック○", 300, ed_y + scroll); scroll+=50; text("長谷川文", 300, ed_y + scroll); scroll+=100; text("○キャラクタプログラム○", 300, ed_y + scroll); scroll+=50; text("逸見優聡", 300, ed_y + scroll); scroll+=50; text("藤代健吾", 300, ed_y + scroll); scroll+=150; text("○マップ制作○", 300, ed_y + scroll); scroll+=50; text("別所一洸", 300, ed_y + scroll); scroll+=150; text("○バトルシステム○", 300, ed_y + scroll); scroll+=50; text("豊田裕也", 300, ed_y + scroll); scroll+=100; text("○バトルプログラム○", 300, ed_y + scroll); scroll+=50; text("豊田裕也", 300, ed_y + scroll); scroll+=50; text("逸見優聡", 300, ed_y + scroll); scroll+=150; text("○素材提供○", 300, ed_y + scroll); scroll+=50; text("「たからじま」様", 300, ed_y + scroll); scroll+=50; textSize(20); text("http://www7b.biglobe.ne.jp/~uma-casa/", 300, ed_y + scroll); textSize(30); scroll+=100; text("「ゐ薬きょうたのブログ」様", 300, ed_y + scroll); scroll+=50; textSize(20); text("http://blog.livedoor.jp/igsrkt/", 300, ed_y + scroll); textSize(30); scroll+=150; text("○スペシャルサンクス○", 300, ed_y + scroll); scroll+=50; text("北原哲郎", 300, ed_y + scroll); scroll+=50; text("TA/SA", 300, ed_y + scroll); scroll+=500; textSize(50); text("END", 300, ed_y + scroll); if (ed_time>=300)ed_y --; else ed_time++; //最後のENDが中央に表示されるように調整してストップ if (ed_y < -3700) noLoop(); /* //テスト用 text(ed_y, 500, 500);*/ }