Skip to content

Stash Unity 0.9.4

Latest
Compare
Choose a tag to compare
@oliexe oliexe released this 27 Feb 23:09
· 1 commit to main since this release

[0.9.4] - 2025-02-28

  • Added GetLoyaltyUrl to StashLauncher.
//Get the loyalty URL from Stash API and open it in the browser. Requires playerID & auth token.

 try
 {
    LoyaltyUrlResponse loyaltyUrl = await StashLauncher.GetLoyaltyUrl(InternalPlayerId, IdToken);
    Application.OpenURL(loyaltyUrl.url);
 }
 catch (StashRequestError e)
 {
    Debug.LogError(e.Message);
 }