update amznchartools
This commit is contained in:
2026-03-18 18:03:21 -06:00
parent eea7cc1969
commit 9fcddeca02
26 changed files with 461 additions and 110 deletions
@@ -0,0 +1,10 @@
import bpy
# Simple operator script that removes the 'Devices' custom property from the active pose bone.
# Usage: enter Pose Mode, select the Settings pose bone, then click the button in the Devices panel.
try:
bpy.ops.wm.properties_remove(data_path="active_pose_bone", property_name="Devices")
except Exception as e:
# This will fail if the context isn't correct; keep it minimal and print for debugging.
print(f"Failed to remove 'Devices' property via wm.properties_remove: {e}")