Fragment zbrush.commands.is_disabled

Code fragment for zbrush.commands.is_disabled.

zbrush.commands.is_disabled

Tests if the specified interface item is disabled, i.e., not greyed out and not interactable.

Code

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

from zbrush import commands as zbc

is_disabled: bool = zbc.is_disabled("Transform:Move")
print(f"'Transform:Move' is disabled: {is_disabled}")