はじめに
「unity-transform-control」を Unity プロジェクトに導入することで
ゲーム内で transform のギズモを操作できるようになります
使用例
使い方
操作したいオブジェクトに「TransformControl」をアタッチします
using mattatz.TransformControl; using UnityEngine; public class TransformControlUI : MonoBehaviour { public TransformControl control; private void Update() { control.Control(); } }
そして、上記のようなコードを記述します