Search Unity

Question Need help with multiplayer

Discussion in 'Multiplayer' started by andreymirnz, Aug 26, 2020.

  1. andreymirnz

    andreymirnz

    Joined:
    Aug 12, 2020
    Posts:
    2
    Hi guys, I've got a question. Is that possible to make like a rating (player clicked on other players and look their scene)? I mean for example, 1 player has a house, 2 player want to look for this house by clickng on 1 player nickname on a rating score. And how to make it? May be without multiplayer?
     
  2. Joe-Censored

    Joe-Censored

    Joined:
    Mar 26, 2013
    Posts:
    11,847
    You'd had a server which had all the player house information. When a client requests information on another player's house, it sends the request to the server, and the server responds with it to the client. The client then takes that information and constructs the house for display to the player. How exactly you do all that depends on exactly what is and needs to be includes in these houses, what features you need when displaying the houses (do you need to show synchronized movement of other players in the house? Do you need to be able to manipulate objects in the house?), and you haven't mentioned what networking system you're using.