You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
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;
}
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!
The text was updated successfully, but these errors were encountered: