コガネブログ

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

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

はじめに

「Unity3D-Simple-Mobile-Joystick」を Unity プロジェクトに導入することで
モバイルでジョイスティック(バーチャルパッド)を使用できるようになります

使用例

f:id:baba_s:20180103192322p:plain

使い方

f:id:baba_s:20180103192533p:plain

「MobileJoyStick」プレハブをシーンに配置します

var controller = GetComponent<MobileInputController>();
var x = controller.Horizontal;
var y = controller.Vertical;

スクリプトからスティックの傾きを取得する場合は
上記のようなコードを記述します

関連記事