processing_やってみた_009
本日はテキストを出す。
processingではテキスト周りの関数が用意されてるから楽っすね〜
text("表示する文字", x座標, y座標);
//テキストを描画していく
float centerX, centerY;
void setup(){
fullScreen();
textSize(100);
textAlign(CENTER, CENTER);
centerX = width/2;
centerY = height/2;
}
void draw(){
text("HELLO WORLD", centerX, centerY);
}
文字を使ったアニメーションを作ろうとしてるけど、ちょっと苦戦中
この記事が気に入ったらサポートをしてみませんか?