An open API service indexing awesome lists of open source software.

https://github.com/baba-s/uniremotechecker

【Unity】Unity Remote 5 が接続されているかどうか確認するスクリプト
https://github.com/baba-s/uniremotechecker

kogane-unity-lib unity unity-mobile unity-script unity3d

Last synced: 5 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# Uni Remote Checker

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

## 使用例

```cs
using UniRemoteChecker;
using UnityEngine;

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