videokit-ai / videokit

Low-code, cross-platform media SDK for Unity Engine. Register at https://videokit.ai
https://videokit.ai
Apache License 2.0
107 stars 14 forks source link

Feature Request: Share text only #92

Closed thammin closed 5 months ago

thammin commented 10 months ago
using var payload = new SharePayload();
payload.AddText("some texts");
await payload.Share();

Hello, I've used to share text only as the code showed above using the NatShare plugin. Can you please make this plugin able to share text only? Thanks.

olokobayusuf commented 10 months ago

Coming in next update.

olokobayusuf commented 5 months ago

This has been implemented for a while:

var asset = await MediaAsset.FromText("this is some text");
await asset.Share();