Hi again and thanks for your time!
Today I'm learning to implement the Party system into a game in Unity 2022.3.41f1. I've installed the base SDK, made some API calls, and even made a little chat client using Shared Group Data as a learning project. Everything is working great and I'm really enjoying learning.
Today I installed the PlayFabPartyUnity Package into the same project and got 3 compilation errors when I did. I have allowed unsafe code. Here is the first:
Assets\PlayFabSDK\Shared\Internal\PlayFabHttp\GzipDownloadHandler.cs(54,44): error CS1061: 'PlayFabApiSettings' does not contain a definition for 'DecompressWithDownloadHandler' and no accessible extension method 'DecompressWithDownloadHandler' accepting a first argument of type 'PlayFabApiSettings' could be found (are you missing a using directive or an assembly reference?)
PlayFabSettings.staticSettings.DecompressWithDownloadHandler = false; // this is the line causing the error
If I comment out this line, I get two new compilation errors
Assets\PlayFabPartySDK\Source\Scripts\PartyUnitySDK\PlayFabEventTracer.cs(97,47): error CS0117: 'Version' does not contain a definition for 'PartyNativeVersion'
Assets\PlayFabPartySDK\Source\Scripts\PartyUnitySDK\PlayFabEventTracer.cs(98,52): error CS0117: 'Version' does not contain a definition for 'PartyUnityVersion'
What should I do to resolve these? Thanks again!