How i can remove the character controller when i’m using FirstPersonControl.js script from mobile standard assets?
Until i added FirstPersonControl and joystiks on my game, all works good.But now cause of character controler the phisycs sucks. I can’t remove character controller without seeing this prompt: Can't remove character controller because FirstPersonControl.js depends on it.
Please help.
If you wish, you can double click the script and open it up in MonoDevelop. From there just take out the bracketed text near the top that should read something like [RequiresComponent: FPSController] or something. OR you may surround that in an if statement and set a bool like “makeThisScriptRequireFPSControllerScript” = false; that way you can check or uncheck it in the inspector instead of deleting/blocking that text out completely.