Unity3d 开发(八)复制内容到剪切板

将文本复制到剪切板中其实是有接口的,需要借助TextEditor这个类,代码如下:

TextEditor te = new TextEditor();
te.content = new GUIContent(outputTime.ToString());
te.SelectAll();
te.Copy();

你可能感兴趣的:(unity3d)