在Blender中用程式化生成Animation_Nodes动画01
2021/7/27 11:06:14
本文主要是介绍在Blender中用程式化生成Animation_Nodes动画01,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
用如下代码可以自动在Blender中生成AnimationNodes动画。效果如附图。
bpy.ops.mesh.primitive_monkey_add(location=(0,4,10))
msource = bpy.context.object
if len(mssource.particle_systems) == 0:
bpy.context.view_layer.objects.active = mssource
mssource.modifiers.new("part", type='PARTICLE_SYSTEM')
part = mssource.particle_systems[0]
settings = part.settings
settings.count=200
settings.frame_end=120
settings.lifetime=100
settings.effector_weights.gravity=0
bpy.data.node_groups.new("NodeTree","an_AnimationNodeTree")
bpy.data.node_groups['NodeTree'].name='MyNodeTree'
ng = bpy.data.node_groups['MyNodeTree']
particleSystemsFromObject = ng.nodes.new("an_ParticleSystemsFromObjectNode")
particleSystemsFromObject.location=(-600,0)
particleSystemsFromObject.inputs[0].object=mssource
particleSystemParticlesData = ng.nodes.new("an_ParticleSystemParticlesDataNode")
particleSystemParticlesData.location=(-400,0)
findClosePoints = ng.nodes.new("an_FindClosePointsNode")
findClosePoints.location=(-200,0)
splinesFromEdges = ng.nodes.new("an_SplinesFromEdgesNode")
splinesFromEdges.location=(100,0)
splinesFromEdges.algorithmType='BRANCH'
curveObjectOutput= ng.nodes.new("an_CurveObjectOutputNode")
curveObjectOutput.location=(400,0)
curveObjectOutput.inputs[1].isUsed=True
curveObjectOutput.inputs[2].isUsed=True
curveObjectOutput.inputs[0].createObject()
curveObjectOutput.inputs[2].value=0.5
#add link
ng.links.new(particleSystemsFromObject.outputs[0],particleSystemParticlesData.inputs[0])
ng.links.new(particleSystemParticlesData.outputs[0],findClosePoints.inputs[0])
#ng.links.new(particleSystemParticlesData.outputs[0],combineMesh.inputs[0])
ng.links.new(findClosePoints.outputs[0],splinesFromEdges.inputs[1])
ng.links.new(particleSystemParticlesData.outputs[0],splinesFromEdges.inputs[0])
ng.links.new(splinesFromEdges.outputs[0],curveObjectOutput.inputs[1])
这篇关于在Blender中用程式化生成Animation_Nodes动画01的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11cursor试用出现:Too many free trial accounts used on this machine 的解决方法
- 2025-01-11百万架构师第十四课:源码分析:Spring 源码分析:深入分析IOC那些鲜为人知的细节|JavaGuide
- 2025-01-11不得不了解的高效AI办公工具API
- 2025-01-102025 蛇年,J 人直播带货内容审核团队必备的办公软件有哪 6 款?
- 2025-01-10高效运营背后的支柱:文档管理优化指南
- 2025-01-10年末压力山大?试试优化你的文档管理
- 2025-01-10跨部门协作中的进度追踪重要性解析
- 2025-01-10总结 JavaScript 中的变体函数调用方式
- 2025-01-10HR团队如何通过数据驱动提升管理效率?6个策略
- 2025-01-10WBS实战指南:如何一步步构建高效项目管理框架?