Rafal Hajnc

Orsonorix

About Me

Connect

LOCATION
Poland
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Swap rbd during simulation Jan. 24, 2022, 4:47 p.m.

Hi,
thanks, it worked! I'm attaching hip if anyone interested.
Cheers

Swap rbd during simulation Jan. 24, 2022, 10:28 a.m.

Hi,
Is it possible to swap rbd simulated object to different one while simulating? For example bunch of simulated boxes changes at random to spheres which inherit position, rotation and continue to simulate.

Alembic point cloud, how to copy detail to points May 7, 2021, 5:48 a.m.

Hey,

I did it like this:


vector4 valueq;
int pNum = attribsize(0, "detail", "_orientation");
vector4 _orientation[] = detail(0, "_orientation");

for (int i = 0; i < pNum; i++)
{
    valueq = _orientation[i];
    setpointattrib(0, "orient", i, valueq, "set");
}

Hope it helps