Rafal Hajnc

Orsonorix

About Me

Connect

LOCATION
Poland
ウェブサイト

Houdini Engine

Availability

Not Specified

Recent Forum Posts

Swap rbd during simulation 2022年1月24日16:47

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

Swap rbd during simulation 2022年1月24日10:28

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 2021年5月7日5:48

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