Answers for "unity how to copy something to the clipboard"

C#
2

unity how to copy something to the clipboard

GUIUtility.systemCopyBuffer = "test";
Posted by: Guest on November-01-2020
0

copy to clipboard unbity

//Add this to any class and just set it with clipboard = "text";
 
 internal static string Clipboard {
   get
   {
     TextEditor _textEditor = new TextEditor();
     _textEditor.Paste();
     return _textEditor.text;
   }
   set
   {
     TextEditor _textEditor = new TextEditor
     {text = value};

     _textEditor.OnFocus();
     _textEditor.Copy();
   }
}
Posted by: Guest on April-07-2020

Code answers related to "unity how to copy something to the clipboard"

C# Answers by Framework

Browse Popular Code Answers by Language