お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
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クリップボードにコピーした情報を取得します
自分自身でコピーとペースト操作を作成する時に使用します
"コピー"コマンドが複数あります
// 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(); } }