Questions tagged [unity-remote]

Unity Remote is a downloadable app designed to help with Android, iOS and tvOS development. The app connects with Unity while you are running your project in Play Mode from the editor.

Unity Remote is a downloadable app designed to help with Android, iOS and tvOS development. The app connects with Unity while you are running your project in Play Mode from the editor. The visual output from the editor is sent to the device’s screen, and the live inputs are sent back to the running project in Unity. This allows you to get a good impression of how your game really looks and handles on the target device, without the hassle of a full build for each test. [More]


Related tags

19 questions
2
votes
2 answers

Unity Remote 5 with Android problem : CommandInvokationFailure: Unity Remote requirements check failed

I'm trying to use unity remote 5. Here is what I've done: In File\Build Settings, Android is selected In Edit\Project Settings\Editor, Device is set to 'Any Android Device' In Edit\Preferences\External tools, everything in the Android section is…
Sygall
  • 33
  • 1
  • 5
2
votes
2 answers

Unity Remote 5 not working with Unity 2019.3

I've always used Unity Remote 5 with Unity and it has always worked fine. All of a sudden I started Unity and nothing worked. The app wasn't showing anything and in the editor i couldn't even click in the game panel. I tried: Uninstalling and…
2
votes
1 answer

How to make a 3D object to follow my finger from left to right on Android?

I'm new to unity and game developing so I've tried to make a game. Everything worked well until I thought about changing from making the game from PC to Android. The movement on PC worked well but I can't seem to find any code for kind of the same…
2
votes
1 answer

Determine if Unity Remote is being used?

Is there a way to check if Unity Remote is being used in the editor? This doesn't seem to be working with Unity Remote 5?
Daniel
  • 447
  • 5
  • 22
2
votes
0 answers

Unity Remote 5 - Doesn't work with any version of Unity for me

I've read over 50 threads about Unity Remote on this website, however, nothing has resolved my issue. I've tried downloading every version from 2018-2019 but the Unity remote doesn't work at all for me. I've followed many tutorials so i have went to…
AntonioTorro
  • 199
  • 4
  • 20
1
vote
1 answer

How To Fix Issue Of Unity Remote 5 not Working

I tried everything but I am not abled to test my game on my mobile device but problems are coming 1.In resolution options I set it to Android Remote and in that always Android Remote is not connected is shown 2.there is warning coming that Set-up…
Yash Kute
  • 21
  • 4
1
vote
2 answers

Can't connect Unity Remote 5 to unity (version 2018.2.3f1)

I'm trying to connect my Android phone, Huawei p smart, (operating system is Oreo 8.0) to my MacBook Pro. I'm using Unity 2018.2.3f1. I have been to Edit > Project Settings > Editor and setting the device to Any Android Device. When I press play,…
Magnus
  • 91
  • 1
  • 2
  • 8
0
votes
0 answers

I have an issue related to Android Studio that affects Unity

When I open Unity and try to connect my game, Unity Remote, to try it, a message appears: Set-up Android SDK path to make Android remote work. Note that I have connected both Unity and Android Studio to the same SDK path. On the other hand, in…
DROX
  • 1
  • 1
0
votes
0 answers

Script working fine in Unity remote 5 but not when built to android

The script is working just fine in editor and remote 5 but only spawns 1 tile when built to android, however it spawns 40 tiles on both sides of the screen in editor and remote 5, while it spawns only 1 tile on 1 side in android and then does…
0
votes
1 answer

Unity game working perfectly in Unity remote 5 but not functioning properly when built

My 2 player android Unity game is working just fine in Unity remote 5, I have a small minigame where there are multiple coloured tiles and coloured buttons and so to match a tile, u have to click the right button and as quick as possible before the…
0
votes
0 answers

How to debug an androit app without compiling it again and again on the android phone

I use unity version 2022.1 and I have a XR Scene. I want to run the scene in the unity editor by using the camera of the android device, so that I don't need to complie it always to my phone. How can I setup the project so that unity recognises the…
0
votes
0 answers

Works in Unity Remote 5 but not on Phone

public float shakeThreshold= 1; public void Update() { if(Input.acceleration.magnitude >= shakeThreshold) { Invoke("Throw", 0.7f); } } I have a basic code that when I shake my phone invoke the throw method. It…
bakiklmp
  • 1
  • 1
0
votes
0 answers

Unity remote debugging to android is not working

Im quite new to mobile development and im having a hard time getting the debugging on the phone to work. This is the error message i get CommandInvokationFailure: Unity Remote requirements check failed C:\Program…
Daarwin
  • 2,896
  • 7
  • 39
  • 69
0
votes
0 answers

Unity Remote notification authorization request not showing up

I have a basic unity scene that involves a button which is linked to an OnClick method. I know this part works because I have the debug.log that tells me. I tried looking all over the internet and stack overflow and couldn't find an answer to my…
0
votes
1 answer

unity remote not working while build and run does work

So in my situation i installed all the modules through unity hub. I could build and run the app on my phone, it was showing up in the build settings. But when pressing 'play' while the phone had the unity remote app open, nothing happened. i have…
Alex
  • 366
  • 1
  • 3
  • 10
1
2