bpy.context.visible_fcurves
是一个记录当前 Blender 上下文中,可见关键帧曲线对象的列表。可见关键帧曲线是指在 Blender 中显示并可编辑的关键帧曲线对象。
bpy.context.visible_fcurves
bpy.context.visible_fcurves
返回当前可见的关键帧曲线对象列表。
import bpy
# 获取当前场景中所有可见的关键帧曲线对象
curves = bpy.context.visible_fcurves
# 循环遍历所有可见的关键帧曲线对象
for curve in curves:
print(curve.data_path, curve.array_index)