Processing.jsでテキスト表示

Processing.jsのリファレンスページを見て、テキスト表示できるのを知りお試し。

<!DOCTYPE HTML>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Processing: parabolic motion</title>
</head>
<body>
	<canvas id="mycanvas"></canvas><br />

	<script src="processing-1.4.1.min.js" type="text/javascript"></script>
	<script type="application/processing" data-processing-target="mycanvas">
		int text_size = 20;

		void setup() {
		  size(320, 240);
		  textSize(text_size);
		  background(#000000);
		}

		void draw() {
		  background(#000000);

		  String time = "TIME " + hour() + ":" + minute() + ":" + second();
		  text(time, 10, text_size);
		}
	</script>
</body>
</html>

参考サイト

ゲームプログラミング入門 (日経BPパソコンベストムック)
日経BP社 (2012-10-22)
売り上げランキング: 23469

関連エントリー

  1. Processing.jsで自由落下
  2. Processing.jsでフリックを認識したい
  3. Processing.jsで放物運動
  4. Processing.jsで斜面落下
  5. Processing.jsで衝突運動
This entry was posted in 未分類 and tagged , , . Bookmark the permalink.