我应该为统一插件导入什么标题

时间:2019-09-17 11:55:57

标签: c# unity3d plugins

我安装了NativeShare插件。我创建了自己的脚本。我想分享一些网站。

NativeShare().SetText("http://somesite.com").Share();

找不到NativeShare。我应该导入什么标题?

插件link on plugin上的链接

1 个答案:

答案 0 :(得分:2)

这与标题无关。从this file中,我看到该插件不使用任何名称空间,因此(正如Cid在评论中所建议的那样),您只需要实例化该类。

var nativeShare = new NativeShare();
nativeShare.SetText("http://somesite.com").Share();

您也可以一行完成。
new NativeShare().SetText("http://somesite.com").Share();