Leaderboard
Popular Content
Showing content with the highest reputation since 07/05/2025 in all areas
-
4 points
-
Hi @millsy, maybe start with sweeps as they provide output attributes like primcol to later create patterns. straw_weave.hip2 points
-
1 point
-
I'm trying to add Ramp to Dome light in the node view to create my custom background, but I can't figure out how to make it work in the latest version of Redshift 2025.6.0. I know I can add an image, and it works, but in this case, I want to plug in a node. The RS forum is down ATM, so trying my luck here.1 point
-
1 point
-
1 point
-
It seems for me everything above the node using `lopinputprims('.', 0)` would be affected. I've just updated to a newer version of Houdini and the expression does indeed ONLY affect the first primitive piped into the operator! Kind of makes this question redundant as all that was required was an update. Thanks for your help @PixelNinja1 point
-
The second argument specifies which input. So 0 for first input, 1 for second, etc. Is that what you mean? It will also only affect the most recently modified primitives on that input. https://www.sidefx.com/docs/houdini/expressions/lopinputprims.html1 point
-
@millsy Check this to take it further: https://procegen.konstantinmagnus.de/wicker-basket1 point
-
1 point
-
I made it by using hidden trigger param and use it as hiding buttons rule. When you press one button hidden param is 1 when you press second one it is a 0.1 point
-
Hi, to see how it works in attached file create a new button visibility node from tab -> Digital Assets toggle_button_visibility.hipnc1 point
-
1 point
-
For anyone else stumbling on this years later I had the same issue today. If you have your Karma render settings "Velocity Blur" parameter set to "Velocity Blur" or "Accelleration Blur" it won't render any Deformation Blur unless you set your deforming mesh prim to "No Velocity Blur" with a Render Geometry Settings LOP.1 point
-
Hi, changing "Max Points" parm on attribute wrangle will be able to control speed of infection spreading. attribute_spread_v2_animated_01.hipnc1 point
-
1 point
-
1 point
-
Yes, packages are the way to go. You may find this useful1 point
-
Hello I am trying to achieve something similar to the example video where a scoop comes in and scoops out some ice cream. I've only seen this done once recently and it looked like the person used grains, but it didn't look as real as what I'm going for. Does anyone have any ideas on how best to approach this? Is grains the only option besides using a bend node and keyframe animating? Thank you for your time in advance! scoop.mp41 point
-
Here is another way with the arclen function:Absolute carve.hip1 point
-
What about something like this running in a point wrangle. Fetch all the group names from the intrinsic attribute where they are stored. Initially set all points to be in the "newgroup" group, then loop over the group names. If the point is in the fetched group, remove it from "newgroup." i@group_newgroup = 1; string groups[] = detailintrinsic(0, "pointgroups"); foreach (int i; string group; groups) { int check = inpointgroup(0,group,@ptnum); if(check==1){i@group_newgroup = 0;} }1 point
-
Hi - put some simple hip from u work, they can help more.1 point
-
Point Jitter SOP - axis scale z: 0 OR Attribute Wrangle (Run Over Points): Remember to click the little icon to create the parameter. vector noise = noise(chv("offset")+@ptnum); noise.z = 0; @P += noise; As with most things in Houdini, there are infinite ways to achieve a given effect.1 point
-
Learning more about noise- Polar cords ( how to make those Haeckel figures and attribute mirror ) and using @petz examples. I found something nice (because it's in Vops) so I like it, its file from Raphaël Gadot ..Mestela approach nice talk ( Hypercubes ) and combining with Qlib ...Need to learn more about, for-each, how to isolate those primitives-curves? More to learn. file from Gadot .. hypercube_rotation_simple.hipnc1 point
-
try to put this in the timeshift node int($FF/6)*6 the sequence will be 0, 6, 12, 18...1 point
-
Hmm ok, after reading jsmack`s post in your other thread about this on the SideFX forums this would be the code, I guess: string cam = chs('Camera'); vector res = chv('Resolution'); v@pos = toNDC(cam, @P); v@pix = @pos * res; What are you trying to do, anyways?1 point
-
1 point
-
I just did very simple VEX based gap filler - I don't have the time to fully test and adjust it, but you may find it useful. The results are not even close to Pazuzu's great method! Check the Example - there are 2 vex files that you have to include to HOUDINI_VEX_PATH Cheers! Example.zip1 point
-
try lowering your collision padding. If you switch on display collision geo in dops I bet the small pieces look very rounded (because collision padding is too low) Will change the look of your sim though best to avoid siming really small pieces.1 point
-
Yes, 4d->perlin->1d and 4d->perlin->3d included. Again, if you need to patch by hand right now, these additional two changes are: At lines 395-398, where it currently reads: #define ns_fperlin4 \ nsdata ( "perlin" , 0.0168713 , 0.998413 , 0.324666 , 1 ) // +/- 0.0073 #define ns_vperlin4 \ nsdata ( "perlin" , 0.00576016 , 1.025 , 0.32356 , 1 ) // +/- 0.0037 It should instead read: #define ns_fperlin4 \ nsdata ( "perlin" , 0.0168713 , 0.998413 , 0.507642 , 1 ) // +/- 0.0073 #define ns_vperlin4 \ nsdata ( "perlin" , 0.00576016 , 1.025 , 0.518260 , 1 ) // +/- 0.0037 The rest of the 4d stats look OK -- and it was the 4D batch that was compromised for some reason (maybe because I ran it in Windows? ). As an aside, I'd recommend using simplex over perlin from now on, if you can. Thanks for catching these!1 point
-
Say you want to remove as much primitives as possible from a surface, while retaining the same number of classes ( in terms of edge connectivity) What is the workflow to generate a certain number of solutions, or attempt to, and give the user the ability to choose one among the solutions.0 points