Created
March 18, 2024 02:32
-
-
Save baba-s/44eaad3dd8ea700de1c20a41566f6d55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using GooglePlayServices; | |
using UnityEditor; | |
using UnityEngine; | |
internal static class Example | |
{ | |
[MenuItem( "Tools/Hoge" )] | |
private static void Hoge() | |
{ | |
PlayServicesResolver.Resolve | |
( | |
resolutionComplete: () => Debug.Log( "完了" ), | |
forceResolution: true // 「Force Resolve」を呼び出すなら true を渡す | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment