コード例 #1
0
ファイル: SocialDemo.cs プロジェクト: bufang-master/Adventure
    private void shareClicked()
    {
        // NOTE: If the platform doesn't support multiple share types at once, then data will take priority over text.
        var data = ReignLogo.texture.EncodeToPNG();

        SocialManager.Share(data, "ReignSocialImage", "Demo Text", "Reign Demo", "Reign Demo Desc", SocialShareDataTypes.Image_PNG);

        // NOTE: If you want to share a screen shot you can use the helper method below
        //ReignServices.CaptureScreenShot(captureScreenShotCallback);
    }