Skip to content

Instantly share code, notes, and snippets.

@IcedDog
IcedDog / driver_update.py
Created April 22, 2026 12:10
automatically updates all drivers dependencies in the scene
import bpy
def refresh_all_drivers():
for obj in bpy.data.objects:
anim = obj.animation_data
if not anim:
continue
for fcurve in anim.drivers:
driver = fcurve.driver