unity copy to clipboard

Code Example - 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;
    }
}
                    
                
 

unity how to copy something to the clipboard

                        
                                GUIUtility.systemCopyBuffer = "test";