Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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
0
Question by NiqonNO · Mar 05, 2018 at 09:39 AM · networkingclient-server

RPC Function RpcSpawnCameras called on client.

Hi I have a setup where there is one server, and multiple clients which only displays things, so I'm configuring cameras on server, and send that data to clients via RPC so they can spawn right amount of cameras. Earlier I was using depreciated RPC function and it kinda works (sometimes it freezes) so I decided to move to newer network system but i'm getting that error "RPC Function RpcSpawnCameras called on client.". I tried if(isSerer), but this didn't help, there is no way that RpcSpawnCameras is called somewhere on client.

   void OnPlayerConnected(NetworkPlayer player)
     {
                 Spwan(player.ipAddress);
     }
 
     void Spwan(string ipAddress)
     {
         foreach (SaveToolbox.Slave s in SaveToolbox.Instance.slaves)
         {
             if (ipAddress.Equals(s.ip))
             {
                 foreach (SaveToolbox.Monitor m in SaveToolbox.Instance.monitors)
                 {
                     if (s.id == m.slaveID)
                         RpcSpawnCameras(ipAddress, m.displayID - 1, m.resolutionX, m.resolutionY);
                 }
                 break;
             }
         }
     }
 
     [ClientRpc]
     void RpcSpawnCameras(string target, int id, int resX, int resY)
     {
         if (target == Network.player.ipAddress)
         {
             GameObject camera = Instantiate(cameraPrefab) as GameObject;
             camera.GetComponent<Camera>().targetDisplay = id;
             Display.displays[id].Activate(Display.displays[1].systemWidth, Display.displays[1].systemHeight, 60);
             camera.transform.SetParent(cameraParent);
             camera.transform.localPosition = Vector3.zero;
             camera.transform.localEulerAngles = Vector3.zero;
         }
     }
Comment
Add comment · Show 3
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 hexagonius · Mar 05, 2018 at 10:21 AM 0
Share

Run the client from the editor, set a breakpoint where spawn is called and let the debugger help you finding out why the client is calling that function. If Unity says so, it is called on the client.

avatar image NiqonNO hexagonius · Mar 05, 2018 at 10:49 AM 0
Share

Nope, client is connecting to server, and then do nothing. $$anonymous$$aybe Unity thinks that server is also client? I don't really get the Unity network components, and only use Network Identity (added on start so it don't disable my gameobject).

avatar image hexagonius NiqonNO · Mar 05, 2018 at 07:59 PM 0
Share

? added on Start? that sounds wrong already. how do you expect the server to tie network identities together if they're not known? if you want something visible without being connected it cannot be the networked object, that has to be in the scene from the start or network spawned.

0 Replies

· Add your reply
  • Sort: 

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

113 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Unity vs client-side prediction 0 Answers

UNet ClientRPC does not fire 2 Answers

UNet Portal 2 Like Object Interaction Client to Server 1 Answer

Networking: Client-spawned Objects do not appear on Server 0 Answers

How does AssignClientAuthority work? 1 Answer


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