Add Extra Content(Stickers & Links)
Learn how to add Stickers, Caption Text & Links to the content being shared
Add Sticker
Create Sticker
private SnapchatSticker CreateSticker()
{
SnapchatSticker sticker = null;
sticker = new SnapchatSticker(Application.persistentDataPath + "/" + SharingStickerName);
// Set Position in normalised screen coordinates
sticker.SetPosition(0.5f, 0.5f);
// Set rotation in degrees
sticker.SetRotation(-45f);
// Set size for the sticker in pixels
sticker.SetSize(Screen.width * 0.3f, Screen.height * 0.3f);
return sticker;
}Set Sticker to content
Add Caption Text
Add Attachment Url
Example
Last updated