0
1

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 3 years have passed since last update.

スマホゲーム作る人はEventTriggerを使え!!(キャラをUI上の方向キーで動かす)

Posted at

実現できること

下の写真のようにボタンを設置して押したらキャラが動くようになる。
スクリーンショット 2020-05-18 20.14.44.png

やること

(1)ボタンを作る

なんでもいいのでボタンを配置する
スクリーンショット 2020-05-18 20.14.36.png
スクリーンショット 2020-05-18 20.14.44.png

(2)スクリプトを書く

PlayerManager.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PlayerManager : MonoBehaviour
{
    //画面の上のボタンによる移動
    bool rightmove;
    bool leftmove;
    
    void Update()
    {
        if (rightmove == true)
        {
            transform.position += new Vector3(4f * Time.deltaTime, 0, 0);
        }
        if (leftmove == true)
        {
            transform.position += new Vector3(-4f * Time.deltaTime, 0, 0);
        }
    }

    public void rightButtonDown()
    {
        rightmove = true;
    }
    public void rightButtonUp()
    {
        rightmove = false;
    }
    public void leftButtonDown()
    {
        leftmove = true;
    }
    public void leftButtonUp()
    {
        leftmove = false;
    }

(3)EventTriggerを追加する

スクリーンショット 2020-05-18 20.19.13.png
Pointer Down と Pointer Upをそれぞれ作って
PLayerManager.csがついたオブジェクトをドラッグする
そして、のところから任意のものを選択する

以上。

わからないことがあれば
@e_san_desuyo まで

追記:動くスピードはスクリプトから変更可能です

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?