Blender: 키프레임 등록(Material)
소개
Material 키프레임 등록 방법을 조사해도 타지 않았기 때문에 비망록적으로.
(Python 경력 2개월 없을 정도)
본문
처음부터. 이 엔은 다양한 사촌을 타고 있었다.
Material 생성 → 컬러 세트까지
main.py mat = bpy.data.materials.new('Mat')
obj.data.materials.append(mat) #add the material to the object
bpy.context.object.active_material.diffuse_color = (0, 0, 0.5) #change color
뭔가 좋은 느낌으로 키프레임 등록시킨다.
main.py bpy.context.object.active_material.keyframe_insert(data_path='diffuse_color')
할 수 있다.
이번 경우는 디퓨즈를 등록하고 있다.
다른 사람이 하고 싶다면 data_path='diffuse_color'
의 부분을 바꾼다.
data_path는
이것으로 복사된다.
끝
비망록적인 그것이므로 열심히 읽고.
Reference
이 문제에 관하여(Blender: 키프레임 등록(Material)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/Bluewind1997/items/0248d018104e8fae7a67
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
처음부터. 이 엔은 다양한 사촌을 타고 있었다.
Material 생성 → 컬러 세트까지
main.py
mat = bpy.data.materials.new('Mat')
obj.data.materials.append(mat) #add the material to the object
bpy.context.object.active_material.diffuse_color = (0, 0, 0.5) #change color
뭔가 좋은 느낌으로 키프레임 등록시킨다.
main.py
bpy.context.object.active_material.keyframe_insert(data_path='diffuse_color')
할 수 있다.
이번 경우는 디퓨즈를 등록하고 있다.
다른 사람이 하고 싶다면
data_path='diffuse_color'
의 부분을 바꾼다.data_path는
이것으로 복사된다.
끝
비망록적인 그것이므로 열심히 읽고.
Reference
이 문제에 관하여(Blender: 키프레임 등록(Material)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/Bluewind1997/items/0248d018104e8fae7a67
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Blender: 키프레임 등록(Material)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Bluewind1997/items/0248d018104e8fae7a67텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)