Copy Text To Clip board Unity | #CopyClipboard in unity
Channel:
Subscribers:
1,110
Published on ● Video Link: https://www.youtube.com/watch?v=JysjIMgHeKM
In this video I have shown how to copy text to clip board in unity 3d
Code :
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class CopyTextExample : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
public void CopyText(Text textHere){
GUIUtility.systemCopyBuffer =textHere.text;
}
}
Other Videos By Muhammad Shahzaib
Tags:
CopyToClipBoard in unity
Unity3d
Learn unity