BLENDER 3D & PYTHON How to quickly save the position of selected objects using a Python script
#blender3d #python #tips_and_tricks #visualization #save #code #modeling3d #3danimation #3d
import bpy
selected_objects = bpy.context.selected_objects
for obj in selected_objects:
if obj.type == 'MESH':
obj.keyframe_insert(data_path="location", index=-1)
obj.keyframe_insert(data_path="rotation_euler", index=-1)
Видео BLENDER 3D & PYTHON How to quickly save the position of selected objects using a Python script канала ANEV 3D
import bpy
selected_objects = bpy.context.selected_objects
for obj in selected_objects:
if obj.type == 'MESH':
obj.keyframe_insert(data_path="location", index=-1)
obj.keyframe_insert(data_path="rotation_euler", index=-1)
Видео BLENDER 3D & PYTHON How to quickly save the position of selected objects using a Python script канала ANEV 3D
Комментарии отсутствуют
Информация о видео
24 июня 2025 г. 21:21:50
00:08:19
Другие видео канала