コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Unity】ジョイスティック(バーチャルパッド)を使用できる「Simple Touch Controller」紹介

f:id:baba_s:20180117151857p:plain

概要

 
2017/3/9 に「Simple Touch Controller」がリリースされました
「Simple Touch Controller」を導入すると
ジョイスティック(バーチャルパッド)を使用できるようになります

検証環境

  • Unity 2017.3.0f3
  • Simple Touch Controller 1.0

使用例

f:id:baba_s:20180117151946p:plain

使い方

f:id:baba_s:20180117152101p:plain

「SimpleTouch Joystick」プレハブをシーンのキャンバス内に配置します

using UnityEngine;

public class Example : MonoBehaviour
{
    public SimpleTouchController controller;

    private void Update()
    {
        Debug.Log( controller.GetTouchPosition );
    }
}

そして、上記のようなコードを記述して使用します

関連記事