Blender Tutorial | Credit Card Flip

Опубликовано: 25 Март 2026
на канале: Hums
6,598
105

Get a Quote for your infographic design needs at:
http://goldenribbon.info/


The Stagger Script



offset actions in time


offset = 1 ## offset in frames
noise = 0 ## add some offset variation (set to 0 to disable)
reset = False ## enable to align actions to frame 0


import bpy, random
objs = [o for o in bpy.context.selected_objects if o.animation_data]


for i,o in enumerate(objs):
act = o.animation_data.action
delta = offset * i
delta += random.random() * noise
if reset: delta = act.frame_range[0] * -1


for fcu in act.fcurves:
for k in fcu.keyframe_points:
k.co[0] += delta
k.handle_left[0] += delta
k.handle_right[0] += delta