Posts: 63
Threads: 9
Joined: May 2018
Reputation:
0
As I host the server with the old version of unity's multiplayer code (NetworkManager) my client's cloth meshes explode after some game time has passed (turn into abominable mess that cover the entire screen). How do I approach handling this problem.
Client does not have this issue on his side.
Posts: 63
Threads: 9
Joined: May 2018
Reputation:
0
My entire character setup is in your posession. You should still have my project, or a link to it. I only changed simulation space to local and update type to "FixedUpdate" for the cloth (and set it to "Interpolate").
But anyway, I am more than willing to create a special project for you, where you will be able to host the server and track the problem.
Like I said - the networking is the standard Unity's NetworkManager. Dunno what else to say. No special code for cloth is being sent/received. Just NetworkManager. Unity creates a clone of the character for me, once somebody joins. Yeah one more thing. I had a NetworkTransform on the problematic character. Maybe today I will trest the game without it.
Posts: 63
Threads: 9
Joined: May 2018
Reputation:
0
14-08-2019, 11:04 AM
(This post was last modified: 14-08-2019, 11:06 AM by cubrman.)
Surprisingly removing the NetworkTransform did the trick and fixed everything.
Btw, if you decide to check it: the project you have does indeed have the full network setup. All you need to do is to edit networkAdress and port in ZNetworkManager script, which sits on the GameController game object and you can immediately host a server with 'H' and join the server with 'C'.