このウィキの読者になる
更新情報がメールで届きます。
このウィキの読者になる
カテゴリー
最近更新したページ
2011-12-05
2010-02-05
2008-01-31
2007-12-09
2007-11-22
2007-11-04
2007-10-06
2007-05-17
2007-05-13
2007-05-11
2007-05-10
最新コメント
1-14 by awesome things!
117 by stunning seo guys
Processing4 Data by stunning seo guys
送信ボタンの仕組み by stunning seo guys
511 by stunning seo guys
510 by music production software
ProStr by awesome things!
FrontPage by check it out
CSV形式とは by check it out
Menu

バックアップ5

/**

Font DrawKey

/


PFont font; //フォント
int size; //文字の速度
char pushKey; //文字

void setup(){
size(200,200);
frameRate(30);

font = loadFont("ArialMT-48.vlw");

fill(255,0,0); //文字色を赤に
size = 64; //サイズを64に
pushKey=' '; //文字を「」に
}

void draw(){
background(255); textFont(font,size); //文字の大きさ textAlign(CENTER); //中央揃えに text(pushKey,100,150); //文字の描画 } //キーが押されたら void keyPressed(){ pushKey = key;
}

2006年12月15日(金) 23:12:15 Modified by notarejini06




スマートフォン版で見る