GameAnalytics / GA-SDK-UNITY

The GameAnalytics SDK for tracking events in Unity.
MIT License
119 stars 56 forks source link

Fix deprecation warnings in Unity 2020.2 #14

Closed Tristyn closed 4 years ago

Tristyn commented 4 years ago

Unity 2020.1 introduced UnityWebRequest.result. In Unity 2020.2 beta they will be deprecating the old boolean properties like isNetworkError, isHttpError etc. This PR implements the changes recommended by the warning messages with backwards compatibility.

Also included is a fix for an unreachable code warning.

Tristyn commented 4 years ago

Nice!