unity之复制文本到剪贴板时间:2021-02-26 19:36:28代码如下: static void CopyString(string str) { TextEditor te = new TextEditor(); te.text = str; te.SelectAll(); te.Copy(); }