言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

EditorGUIUtility.systemCopyBuffer

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static var systemCopyBuffer: string;
public static string systemCopyBuffer;
public static systemCopyBuffer as string

Description

クリップボードにコピーした情報を取得します

自分自身でコピーとペースト操作を作成する時に使用します
"コピー"コマンドが複数あります

	// Simple editor Window that lets you have more than 1 saved "copy" command
	
	class EditorGUISystemCopyBuffer extends EditorWindow {
	
		var savedCopies : String[] = new String[5];
		var load = false;
		
		@MenuItem("Examples/Improved copy buffer")
		static function Init() {
			var window = GetWindow(EditorGUISystemCopyBuffer);
			window.Show();
		}
		
		function OnGUI() {
			load = EditorGUILayout.Toggle("Load:", load);
			EditorGUILayout.BeginHorizontal();
			for(var i = 0; i < savedCopies.Length; i++)
				if(GUILayout.Button(i.ToString()))
					if(load)
						EditorGUIUtility.systemCopyBuffer = savedCopies[i];
					else
						savedCopies[i] = EditorGUIUtility.systemCopyBuffer;
			EditorGUILayout.EndHorizontal();
			
			for(var j = 0; j < savedCopies.Length; j++)
				EditorGUILayout.LabelField("Saved " + j, savedCopies[j]);
			
			EditorGUILayout.LabelField("Current buffer:", EditorGUIUtility.systemCopyBuffer);
			if(GUILayout.Button("Clear all saves"))
				for(var s : String in savedCopies)
					s = "";
		}
		
		function OnInspectorUpdate() {
			this.Repaint();
		}
	}