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 が接続されているかどうか確認するスクリプト
- Host: GitHub
- URL: https://github.com/baba-s/uniremotechecker
- Owner: baba-s
- Created: 2019-10-02T05:07:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-23T11:56:30.000Z (almost 6 years ago)
- Last Synced: 2025-04-07T20:42:19.613Z (10 months ago)
- Topics: kogane-unity-lib, unity, unity-mobile, unity-script, unity3d
- Language: C#
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 が接続されています" );
}
}
}
```