0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

p5jsでPokémon GOっぽいUIを作る(3)

Last updated at Posted at 2019-12-15

3回目です。今回はボタンを作ってみましょう。とりあえず位置合わせも何も考えずに、circle()で書いてみましょう。

function draw() {
  background(0);

  rotateX(1)

  // 地図を描く
  push();
  texture(img);
  plane(1000, 1000);
  pop();

  // 箱人間を描く
  drawBoxman();

  // ボタンを描く
  fill(64,64,64,128);
  circle(0,0,100);

}

こんな感じで書いた丸がこちら。地図の面に張り付いてますね。

スクリーンショット 2019-12-15 9.59.51.png

というわけでrotate(-1)として面を戻してみます。

  rotateX(-1);
  fill(64,64,64,128);
  circle(0,50,100);

すると、おやおやボタンは正面を向いてるようですが、地図にめりこんじゃってますね。

スクリーンショット 2019-12-15 10.26.27.png

というわけで、ボタンを描く面をtranslateで離し、ここにボタンを描くことにします。

  rotateX(-1);
  translate(0,0,300);

  noStroke();

  fill(255,0,0,128);
  circle(-40,120,20);
  fill("white");
  text("A",-40,120);

地図からどれだけ話すかとか、どの位置にボタンを置くかは「適当」です。。。

スクリーンショット 2019-12-15 16.32.27.png

次回はボタンを押したら何かアクションが起こるようにしてみましょう。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?