|
Hi everybody. I'm developing a simple multiplayer online game with Unity3d. I have a problem with player instantiate. For each player I network instantiate an empty game object prefab and I instantiate the character prefab and make it child of empty game object prefab (I use this method because I have some problem with character pivot and orientation). The problem is that players that are playing can see only the other empty object and not the other child object (the remote characters). How can I solve my problem? This is my code: I've tried making a network.instantiate also for the character prefab (attaching a network view) but it doesn't work.
(comments are locked)
|
|
Aside from the Similarly To get this to work you'll have to move all of those updates into an RPC, and then call those RPCs to get the changes to be effected on every connected instance instead of just locally. http://unity3d.com/support/documentation/Components/net-RPCDetails
(comments are locked)
|
