0 down vote favorite
I wrote a simple code that makes an object follow moursor or touch input and works so fast and responsive on editor but when I deploy it on my iPod, it has a slight delay. If you move your finger fast enough, you can see that the object takes time to reach to your finger, it's slight but noticable.
There is no problem in the path that object has to follow in order to get dragged around the scene, problem is it's always like 10 pixels late to the finger's current position. It's like input is checked on less intervals than update.
So is there anyway to make it more responsive? Like with what we can do with physic that we can force it to call more Fixed Update or anything similar.
I want it to follow my finger on the screen fast, without any delay.
I tried these so far with no fruit:
1) Changing FPS ro 60. 2) Changing various settings in AppController.mm
Even with the simplest code I have this problem, a new Unity project and one line of code that gets input's touch, translates it into game's position and puts it into the gameobject's transform component.
iPod touch is 4G and runs iOS 5.0.1 and is Jailbroken.
Thanks.