Found 12 posts.
Search results Show results as topic list.
Technical Discussion » Can Houdini Filecahe Readparticle add a load percentage ?
-
- zuoyuanle
- 12 posts
- Offline
Can Houdini File cahe Read particle add a load percentage function to optimize read and write speed
Technical Discussion » In Houdini, how to assign levels to the branches of a center
-
- zuoyuanle
- 12 posts
- Offline
I imported a tree from another software and I want to create a growth animation in Houdini. I've already extracted the centerline, but I can't figure out how to set levels for each branch. I hope someone can give me some guidance
Technical Discussion » MultiParm Block list - return the attribute menu script
-
- zuoyuanle
- 12 posts
- Offline
How can I achieve functionality similar to "Attribute Swap", where the dropdown menu returns the corresponding data types based on the attribute type?
To ensure that your script handles multiple class parameters without overwriting each other and executes correctly, you need to accumulate the results for each class parameter and avoid reassigning the result list. Here's an updated script that ensures the attributes for each class are correctly added to the final result:
Is there anyone who can help guide me? Thank you very much
To ensure that your script handles multiple class parameters without overwriting each other and executes correctly, you need to accumulate the results for each class parameter and avoid reassigning the result list. Here's an updated script that ensures the attributes for each class are correctly added to the final result:
r = [] node = kwargs['node'] inputs = node.inputs() number_casts = node.evalParm("number_casts") if inputs and inputs[0]: geo = inputs[0].geometry() if geo: #遍历每个属性类别 for i in range(1, number_casts + 1): c = node.parm('class'+str(i)).evalAsString() if c == 'detail': attrs = geo.globalAttribs() elif c == 'primitive': attrs = geo.primAttribs() elif c == 'point': attrs = geo.pointAttribs() else: # vertex attrs = geo.vertexAttribs() for a in attrs: r.extend([a.name(), a.name()]) return r
Technical Discussion » how to Dynamic set houdini hda reference inputs ?
-
- zuoyuanle
- 12 posts
- Offline
and what does the "is reference" check box in the type properties page under inputs/outputs mean? I want to set
reference inputs show connecting wires as dashed lines
reference inputs show connecting wires as dashed lines
Technical Discussion » how to Dynamic set houdini hda reference inputs ?
-
- zuoyuanle
- 12 posts
- Offline
Technical Discussion » houdini particle load display
-
- zuoyuanle
- 12 posts
- Offline
Does Houdini have a way of displaying particles like Thinkbox Krakatoa PRT downgrade the display ?
Houdini Indie and Apprentice » any way to export points to .prt file
-
- zuoyuanle
- 12 posts
- Offline
There is already a compiled version here
https://github.com/CycloneRing/HoudiniPlugins/releases/tag/h19 [github.com]
https://github.com/CycloneRing/HoudiniPlugins/releases/tag/h19 [github.com]
Technical Discussion » How do I modify the bounds intrinsicattribute??
-
- zuoyuanle
- 12 posts
- Offline
I want to use vex to change the size of bounds myself, but I don’t know how to change it?
Houdini Learning Materials » Does houdini have texture path editing and management ?
-
- zuoyuanle
- 12 posts
- Offline
Houdini Indie and Apprentice » any way to export points to .prt file
-
- zuoyuanle
- 12 posts
- Offline
刘易斯_THow to compile can you make a tutorial
I compiled that plugin for H18 a while ago, it should compile in H19, what errors did you get?
I could take a look at compiling it again, see if it's borked
L
Technical Discussion » ReSeed FLIP Only When Points Are Above Waterline
-
- zuoyuanle
- 12 posts
- Offline
Houdini for Realtime » Viewport measure tool
-
- zuoyuanle
- 12 posts
- Offline
You can update the latest installation package. The measurement tool is already included on the shelf
-
- Quick Links