替换 parm 里面的crotl——ctorls
import hou
for s in hou.selectedNodes():
for c in s.children():
for p in c.parms():
if len(p.keyframes())>0:
expr = p.expression()
expr = expr.replace("ctorl",'ctorl2')
p.setExpression(expr)
```
5/4
## 用python创建点
``positions=[
(1,0,0),
(0,1,5),
(2,4,5)
]
pts=geo.createPoints(positions)
5/5
把点加到组内
先打组
pts = geo.creatnode = hou.pwd()
geo = node.geometry()
----------------------
group=geo.findPointGroup("组名字")
group.add(geo.point(10))
把10号点放到组内
创建新组把点放到组内
my_group=geo.createPointGroup('smothing')
my_group.add(geo.point(5))
All Things Begining
用法查询
type().name() 查询节点是否是,“**”类型
eg:
如何用python创建节点
pytho shell 测试
如何创建节点+连线 数值设置
如何排布节点(layout)
举例子 geo.layoutChildren()
pack.setGenericFlag(hou.nodeFlag.Display,True)
pack.setGenericFlag(hou.nodeFlag.Render,True)