-1

Has unity any tools or services to create a multiplayer like in mobile games, where all online is based on clan system, chat and some stuff like arena or rating? If has, do you know someone of them (links or guides are optional)?

I read all the documentation and watched some videos connected to the problem, but as I understand it is all about real time multiplayer.

  • The features you mentionned are "Meta" features and dont require gameplay replication. No Unity don't provide these out of the box you'll have to roll your server or use some PaaS services that might help. Think firebase, gamespark etc.. – Omar Guendeli Jan 19 '20 at 06:27

1 Answers1

1

I don't really understand your question. Are you asking if Unity has some tools to create a full multiplayer game experience (matchmaking, voice, chat, etc.)?

Unity's UNet is deprecated and they are developing a new system. Maybe check here: New Unity system

I would recommend the Photon engine. It basically has everything you need for a multiplayer game and it's free to get started. Photon engine

morty
  • 154
  • 1
  • 1
  • 12
  • The multiplayer I talk about isn't realtime. It's like in mobile (idle-rpg) games, where you can check the profile of other players, join clan or join some events, but the gameplay side doesn't need a realtime multiplayer. – Alex Fateev Jan 19 '20 at 06:56