Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by Itinerant · Sep 05, 2012 at 08:40 PM · photoncontrolsreverse

Controlling the wrong client with Photon Cloud

I'm trying to learn how to use the Photon Cloud service, and am running into a problem with controls.

I have a scene with the default photon cloud asset bundle and the standard first person controller. I've moved the controller into the 'resources' folder, and all related .js scripts into a 'Plugins' folder. I've created a C# script that's basically a modification of their Photon's 'marcopolo' tutorial. For some reason, when I have two clients open, mouse look works in the y direction in the active client, and moves the non-active client in the x direction. Using movement keys moves the other client, but not the one I'm active in. Any ideas what's going on here?

     void OnJoinedRoom(){
 
         GameObject Avatar = PhotonNetwork.Instantiate ("My Photon First Person Controller", Vector3.zero, Quaternion.identity, 0);
         MouseLook mouselook  = Avatar.GetComponent<MouseLook>();
         mouselook.enabled = true;
         FPSInputController controller  = Avatar.GetComponent<FPSInputController>();
         controller.enabled = true;
         CharacterMotor charactermotor = Avatar.GetComponent<CharacterMotor>();
         charactermotor.enabled = true;
         PhotonView myAvatarPv = Avatar.GetComponent<PhotonView>();
     }
     
 
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

3 Replies

· Add your reply
  • Sort: 
avatar image
4

Answer by Life Alchemist · Jun 10, 2013 at 02:36 AM

I had the issue with the tutorial. It's the camera. It doesn't make sense but you have to turn the player's camera off by default, and turn it on through code. Here's what I used since I simply added a camera (gameobject) as a child of the monster object since the mesh motor had a camera required.

 Transform playerCam = monster.transform.Find ("Camera");
 playerCam.active = true;

But the above person may be right for your case since I've just gotten to the part about isMine and I'm trying to find out what that does exactly.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
2

Answer by RufusHolton · Apr 30, 2020 at 02:45 PM

i had this problem too and what i did was:

         public GameObject cam;
     
         private void Awake()
         {
             if (GetComponent<PhotonView>().IsMine)
             {
                 cam.SetActive(true);
             }
             else
             {
                 print("Incorrect PhotonView");
             }
         }
 
 
 
 
  
Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
1

Answer by m5k · Sep 06, 2012 at 08:56 PM

you need to use:

 if (photonView.isMine) {
 
 //Controls here
 
 }

This will only enable content (in this case your control system) for your own entity.

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image AtheroX · Jun 12, 2019 at 04:44 AM 0
Share

That is what i have, but A client controls the B player and B client controls the A player...

 void FixedUpdate() {
         if (photonView.Is$$anonymous$$ine) {
             $$anonymous$$eyboardControl();
             $$anonymous$$ouseControl();
         } else {
             return;
         }
     }

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

11 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Synchronize array with simultaneous access via Photon Network RPC 1 Answer

Photon Unity Networking - Player Camera Instantiate 0 Answers

Accessing a Parent's PhotonID from a child's script 0 Answers

Photon Cloud, Multiplayer Damage script 0 Answers

Photon Networking (Viking Demo) - GetRoomList() func not working 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges