Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 380 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 380 Bytes

Uni Remote Checker

Unity Remote 5 が接続されているかどうか確認するスクリプト

使用例

using UniRemoteChecker;
using UnityEngine;

public class Example : MonoBehaviour
{
    private void Update()
    {
        if ( RemoteChecker.IsRemote )
        {
            Debug.Log( "Unity Remote 5 が接続されています" );
        }
    }
}