First Person Controller Mobile does not work?

Most probably a simple fix…
But I am new to iOS development.
I have a very simple terrain with the “First Person Controls” prefab from the 'Standard Assets (mobile)" package.
Once he is in the scene, and I have had a successful build to my iPhone, I am unable to move the FPC?
No joysticks are shown, and no matter where I tap on the screen, he will not move.
The scene still looks through the camera that is imported with the FPC Mobile prefab though…

I was having a similar problem as well. After creating a simple test level and comparing it to Unity’s FirstPersonSetup scene, I realized that the TouchZone coordinates and Pixel Inset values for the Joystick script and GUITexture respectively (for each of the two sticks) jump to large values when pushing play. After some testing, I found that moving the “FirstPersonControl” prefab to position 0,0,0 solved the problem and I was able to move around in the Xcode simulator and was able to see the touch zones fine.

Hope this helps!

I removed this line in Joystick.js

gui.color.a = 0.025;

After that it works for me.I have changed the transform values only for the uppest GameObject.

the code has a reference to a spawn position. Leave the first person controller at 0,0,0 and create a empty gameobject name “PlayerSpawn” at the position you want your player to begin. That works for me