Fragment zbrush.commands.get_hotkey

Code fragment for zbrush.commands.get_hotkey.

zbrush.commands.get_hotkey

Returns the shortcut of the specified interface item.

Code

"""Code fragment for zbrush.commands.get_hotkey.
"""
__author__ = "Ferdinand Hoppe"
__date__ = "16/10/2025"
__copyright__ = "Maxon Computer"

from zbrush import commands as zbc

value: str = zbc.get_hotkey("Transform:Move")
print(f"Hotkey for 'Transform:Move' is '{value}'.")