Hello, I’m new with Unity and i’m about to make 3rd person multiplayer.
But i got issue and tried alot to fix it but noway.
The problem is When i move my character all other online players moving with my controller!
I’m using Standard Assets Character. And Unity Network.
I’ve tried to make new script and attach it to player which is :
if(isLocalPlayer)
GetComponent().enabled = true;
but i’m getting error:
Assets/LocalPlayerControllers.cs(11,38): error CS0246: The type or namespace name `ThirdPersonUserControl’ could not be found. Are you missing a using directive or an assembly reference?
Try right clicking on “ThirdPersonUserController” click Refactor int he Context menu and see if you can add the namespace missing OR it might be that ThirdPersonUserController doesnt exist at all , in that case you need to import the package “Standard Assets Character” again from the Package downloader/importer window.
Thank you, I solved this by adding “namespace UnityStandardAssets.Characters.ThirdPerson” in script.
but i got another error which is all players using last player joined camera’s and the movement controller will be different in online when i play alone it will be good.