블로그 이미지
Every unexpected event is a path to learning for you.

카테고리

분류 전체보기 (2731)
Unity3D (814)
Programming (474)
Server (33)
Unreal (4)
Gamebryo (56)
Tip & Tech (228)
협업 (57)
3DS Max (3)
Game (12)
Utility (136)
Etc (96)
Link (32)
Portfolio (19)
Subject (90)
iOS,OSX (51)
Android (14)
Linux (5)
잉여 프로젝트 (2)
게임이야기 (3)
Memories (20)
Interest (38)
Thinking (38)
한글 (30)
PaperCraft (5)
Animation (408)
Wallpaper (2)
재테크 (18)
Exercise (3)
나만의 맛집 (3)
냥이 (10)
육아 (16)
Total
Today
Yesterday
03-29 00:00

'ClipboardHelper'에 해당되는 글 1건

  1. 2014.05.15 ClipboardHelper

ClipboardHelper

Unity3D/Script / 2014. 5. 15. 02:08

출처 : http://answers.unity3d.com/questions/266244/how-can-i-add-copypaste-clipboard-support-to-my-ga.html



  1. // C#
  2. // ClipboardHelper.cs
  3. using UnityEngine;
  4. using System;
  5. using System.Reflection;
  6.  
  7. public class ClipboardHelper
  8. {
  9. private static PropertyInfo m_systemCopyBufferProperty = null;
  10. private static PropertyInfo GetSystemCopyBufferProperty()
  11. {
  12. if (m_systemCopyBufferProperty == null)
  13. {
  14. Type T = typeof(GUIUtility);
  15. m_systemCopyBufferProperty = T.GetProperty("systemCopyBuffer", BindingFlags.Static | BindingFlags.NonPublic);
  16. if (m_systemCopyBufferProperty == null)
  17. throw new Exception("Can't access internal member 'GUIUtility.systemCopyBuffer' it may have been removed / renamed");
  18. }
  19. return m_systemCopyBufferProperty;
  20. }
  21. public static string clipBoard
  22. {
  23. get
  24. {
  25. PropertyInfo P = GetSystemCopyBufferProperty();
  26. return (string)P.GetValue(null,null);
  27. }
  28. set
  29. {
  30. PropertyInfo P = GetSystemCopyBufferProperty();
  31. P.SetValue(null,value,null);
  32. }
  33. }
  34. }


반응형

'Unity3D > Script' 카테고리의 다른 글

Unity Serializer  (0) 2014.09.25
Simple C# Unity Serializer  (0) 2014.09.25
유니티 코루틴 깊이 알고 재미있게 쓰기.  (0) 2014.05.09
ScreenWipe CrossFade with C#  (0) 2014.04.22
A simple cross fade shader for Unity  (0) 2014.04.22
Posted by blueasa
, |