- Home /
Unity Remote 3 Problem
Cannot run Unity Remote 3. When clicking Run I receive this error: "iPhoneInputImpl.mm:73:13:{73:15-73:21}: error: assigning to 'UITouch ' from incompatible type 'const UITouch ' [3]"
I am using Unity Remote 3 on XCode 4.2 with osXLion
Lion might be the issue. Snow Leopard is still the safest bet for Unity
Rolling back my OS isn't really an option. Is Unity Remote necessary to share my project with other members on my development $$anonymous$$m?
I'm getting the same error on Snow Leopard OSX 10.6.8, Remote 3, XCode 4.2 Build 4C199.
Answer by equalsequals · Dec 08, 2011 at 05:31 PM
If it is the same problem I was experiencing, it is a semantic issue due to invalid typecast. I just replaced
t.native = native;
with:
t.native = (UITouch *) native;
and everything built correctly.
Cheers
==
Your answer
Follow this Question
Related Questions
i Cant use unity remote in a new project 1 Answer
Body Mask feature broken in 4.1.2? 4 Answers
Mesh Normal 1 Answer
Child lossyScale changes after setting localRotation 1 Answer
Perlin Noise Issue 0 Answers