Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

unity how to copy something to the clipboard

GUIUtility.systemCopyBuffer = "test";
Comment

unity copy to clipboard

using UnityEngine;

public static class ClipboardExtension
{
    /// <summary>
    /// Puts the string into the Clipboard.
    /// </summary>
    public static void CopyToClipboard(this string str)
    {
        GUIUtility.systemCopyBuffer = str;
    }
}
Comment

PREVIOUS NEXT
Code Example
Csharp :: if animation ends 
Csharp :: c# absolute value 
Csharp :: Schema::defultString larvel 
Csharp :: check if gameobject exists unity 
Csharp :: c# print 
Csharp :: c# how to add newline on text box 
Csharp :: how to get random numbers in c# 
Csharp :: c# socket bind to localhost 
Csharp :: c# round number down 
Csharp :: Unity rotate player to mouse point slowly 
Csharp :: c# wpf keyinput DeadCharProcessed 
Csharp :: get filename from path c# 
Csharp :: c# repeat string x times 
Csharp :: c# round to 2 decimal places 
Csharp :: set mouse over colors for button wpf 
Csharp :: c# get file extension 
Csharp :: sum of digits in c# 
Csharp :: how to insert qoutation marks into string c# 
Csharp :: c# determine configration at runtime 
Csharp :: unserialized field unity 
Csharp :: snx disconnect linux 
Csharp :: reference to another script unity 
Csharp :: overload indexer c# 
Csharp :: c# md5 hash file 
Csharp :: c# set int infinity 
Csharp :: unity set active for seconds 
Csharp :: how to make int to text unity 
Csharp :: get length of enum values 
Csharp :: convert string to array c# 
Csharp :: c# enum check in string value 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =