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 :: Change fog setting Unity 
Csharp :: c# datetime dd/mm/yyy hh:mm:ss 
Csharp :: unity quit code 
Csharp :: c# get full URL of page 
Csharp :: unity 3d camera rotate up and down 
Csharp :: how to get the startup path in console app 
Csharp :: unity run void from another script 
Csharp :: how to move a object in unity c# 
Csharp :: how to convert string to bool c# 
Csharp :: vscode c# how to change to externial terminal 
Csharp :: c# copy to clipboard 
Csharp :: C# previous method 
Csharp :: c# string to double 
Csharp :: windows form rounded corners 
Csharp :: c# length 2d array 
Csharp :: how to get all files from folder and subfolders in c# 
Csharp :: unity print 
Csharp :: unity lookrotation lerp 
Csharp :: get dropdown selected value unity 
Csharp :: percentage in c# 
Csharp :: unity character controller ignore collision 
Csharp :: c# change colour of console 
Csharp :: how to check if list index is out of range in c# 
Csharp :: unity find closest point on line 
Csharp :: how to unset passwordchar in c# windows application 
Csharp :: c# how to output in between 0 - 100 in an int array 
Csharp :: c# square every digit of a number 
Csharp :: typeahead causing validation error asp 
Csharp :: c# add guid to array 
Csharp :: check if panel has controler c# 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =