Go to: Synopsis. Return value. Related. Flags. Python examples.

Synopsis

unassignInputDevice([clutch=string], [device=string])

Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.

unassignInputDevice is undoable, queryable, and NOT editable.

This command deletes all command strings associated with this device.

Return value

None

In query mode, return type is based on queried flag.

Related

assignInputDevice, attachDeviceAttr, detachDeviceAttr, devicePanel, getInputDeviceRange, getModifiers, listDeviceAttachments, listInputDeviceAxes, listInputDeviceButtons, listInputDevices, recordAttr, setAttrMapping, setInputDeviceMapping

Flags

clutch, device
Long name (short name) Argument types Properties
device(d) string create
Specifies the device to work on.
clutch(c) string create
Only delete command attachments with this clutch.

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can have multiple arguments, passed either as a tuple or a list.

Python examples

import maya.cmds as cmds

# This deletes all command strings associated with the spaceball.
cmds.unassignInputDevice( d='spaceball' )