Change Mesh across Network?

Options

So, im making a Hide & Seek Game, and my Players are able to change into any objects (with the tag "Prop") which works on the client, but for the other Players im still the standard Mesh (in my case, the Capsule)


So how can I "render" Mesh changes across Network?

Thanks in advance!

Best Answer

  • Tobias
    Tobias admin
    Answer ✓
    Options

    A custom component with OnPhotonSerializeView could send an index of the mesh to use (you'd create a table of those, too).

    You can send an RPC to everyone when a player changes into another object.

    You could set a custom player property, which defines the look of each player. I think I would prefer this approach.

Answers