Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


AddClipboardEntriesTo

Adds clipboard operations to the Scene view context menu.
Read time 2 minutesLast updated 12 days ago

Definition

AddClipboardEntriesTo(DropdownMenu)

Adds clipboard operations to the Scene view context menu.
public static void AddClipboardEntriesTo(DropdownMenu menu)

Parameters

The Scene view context menu to add a clipboard operations to.

Remarks

By default, the Cut, Copy, Duplicate, and Delete operations are greyed out in the Scene view context menu if you do not have a GameObject selected in the Scene. The Paste operation is greyed out if the clipboard is empty. The method overload provides additional control over whether these operations are greyed out.

AddClipboardEntriesTo(DropdownMenu, bool, bool, bool, bool, bool)

Adds clipboard operations to the Scene view context menu.
public static void AddClipboardEntriesTo(DropdownMenu menu, bool cutEnabled, bool copyEnabled, bool pasteEnabled, bool duplicateEnabled, bool deleteEnabled)

Parameters

The Scene view context menu to add a clipboard operations to.

cutEnabled

Whether to enable the Cut operation in the Scene view context menu. When Cut is disabled, it is greyed out in the Scene view context menu.

copyEnabled

Whether to enable the Copy operation in the Scene view context menu. If Copy is disabled, it is greyed out in the Scene view context menu.

pasteEnabled

Whether to enable the Paste operation in the Scene view context menu. If Paste is disabled, it is greyed out in the Scene view context menu.

duplicateEnabled

Whether to enable the Duplicate operation in the Scene view context menu. If Duplicate is disabled, it is greyed out in the Scene view context menu.

deleteEnabled

Whether to enable the Delete operation in the Scene view context menu. If Delete is disabled, it is greyed out in the Scene view context menu.

Remarks

By default, the Cut, Copy, Duplicate, and Delete operations are greyed out in the Scene view context menu if you do not have a GameObject selected in the Scene. The Paste operation is greyed out if the clipboard is empty. The method overload provides additional control over whether these operations are greyed out.