Error in Unity 2019...
 
Notifications
Clear all

Error in Unity 2019.4.2

3 Posts
2 Users
2 Reactions
591 Views
(@gecko64)
Posts: 82
Estimable Member
Topic starter
 

We are upgrading our project from Unity 2019.4.0 to 2019.4.2, and getting this error on a couple Combu scripts:

Combu\Scripts\Profile.cs(10,25): error CS0535: 'Profile' does not implement interface member 'IUserProfile.gameId'

Similar error on User.cs

 

We're still on an older version of Combu3 (3.1.2) -- we can upgrade (if that'll fix it), but is there a quick fix without doing that?

thanks!

Dave

 

 
Posted : 07/07/2020 3:09 pm
fry000 reacted
(@skaredcreations)
Posts: 805
Prominent Member Admin
 

I see that they added this new property to the IUserProfile interface in 2019.4.X, so edit /Combu/Scripts/Profile.cs and add the following code at top of the class (but don't use it in your code, since it's a feature only for Apple Game Center social platform):

protected string _gameId = "";

///
/// Gets the game player identifier
/// 
public string gameId { get { return _gameId; } }

 

It will be included in the next update.

FRANCESCO CROCETTI @ SKARED CREATIONS

 
Posted : 07/07/2020 3:29 pm
fry000 reacted
(@gecko64)
Posts: 82
Estimable Member
Topic starter
 

Thanks much!

 
Posted : 07/07/2020 4:18 pm
Share: