Last active
January 4, 2019 08:41
-
-
Save voxelbustersold/3e3b6fcaaead9712a9e102f817f5c772 to your computer and use it in GitHub Desktop.
Instagram Kit for Unity
This file contains 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 VoxelBusters.InstagramKit; | |
public void IsAvailable() | |
{ | |
bool isAvailable = InstagramKitManager.IsAvailable(); | |
string message = isAvailable ? "Instagram Kit is available!" : "Instagram Kit is not available. Instagram app may not be installed."; | |
Debug.Log(message); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment