Archived post by mestela

yeah, the temp fix i’ve found is to make a copy of the sequence stored in the usd file (double click the sequence in the usd to load it, use the wrench icon to save it to a new name in your content folder), make a new camera, parent it underneath your usd camera, and drag that camera into sequencer

now and then i’ve been able to use the usd camera directly, but it wasn’t reliable, this hacky hack works

Archived post by Solitude

yeah I have a file for that somewhere. You still need to resim it from the velocity field though

not the pyro, just the rest fields.

lemme try and find it

rest field from vel field

makes it so you don’t have to resim the entire pyro just to get a change in the rest fields

Attachments in this post:
http://fx-td.com/houdiniandchill/wp-content/uploads/discord/20215709/30/21/restField_setup.hiplc

Archived post by SniperJake945

“`c //put this shit in a prim wrangle yo int h = primhedge(0, @primnum); int temp = h; int start_pt = hedge_srcpoint(0, h); int new_pts[]; float depth = ch(“depth”); float inset = 1 – ch(“inset”); do{ int pt_a = hedge_srcpoint(0, h); int pt_b = hedge_dstpoint(0, h); vector p_a = point(0, “P”, pt_a); vector p_b = point(0, “P”, pt_b); //inset p_a = (((p_a – @P) * inset) + @P); p_b = (((p_b – @P) * inset) + @P); p_a = p_a + v@N * depth; p_b = p_b + v@N * depth; int npt_a; if(h == temp){ //only runs on our first iteration npt_a = addpoint(0, p_a); append(new_pts, npt_a); }else{ //our current starting point is our previous destination point npt_a = new_pts[len(new_pts) – 1]; }
//add in our destination point, if we’re not back at the start int npt_b; if(start_pt != pt_b){ npt_b = addpoint(0, p_b); append(new_pts, npt_b); }else{ npt_b = new_pts[0]; } //add side walls addprim(0, “poly”, npt_b, npt_a, pt_a, pt_b);
h = hedge_next(0, h); }while(h != temp); addprim(0, “poly”, new_pts); “`
this is polyextrude with the `divide into` toggle set to individual components. if you want to do the connected components stuff, its a lot more effort, but i believe in you. believe in yourself <:meowpensivepray:814858736497590302> also this requires prim normals, so make sure u add those with a normal sop