Mirror-Multiplayer-Tutorials icon indicating copy to clipboard operation
Mirror-Multiplayer-Tutorials copied to clipboard

which unity version to use ?

Open fredodi opened this issue 4 years ago • 1 comments

Hi there.

The tutorials are on 2019, but the unity files in the repo are on unity 2020. What should I do? I'm having this error of "Can't add script component" but tried to open the scenes both on 2016 and 2020. I wonder if it's because of this version difference or not.

Thank you!

fredodi avatar Oct 26 '20 18:10 fredodi

Hi there.

The tutorials are on 2019, but the unity files in the repo are on unity 2020. What should I do? I'm having this error of "Can't add script component" but tried to open the scenes both on 2016 and 2020. I wonder if it's because of this version difference or not.

Thank you!

I used the Latest 2020 version of unity with this, and had to import both Mirror and Steamworks into it separately. There was an issue with the NetworkMessages scripts, which i fixed by changing public class Notification : MessageBase { public string content; } to public struct Notification : NetworkMessage { public string content; }

AinsRuby avatar Jan 01 '21 19:01 AinsRuby