Matt Conroy
c0nr0y
About Me
Connect
LOCATION
Not Specified
ウェブサイト
Houdini Engine
Availability
Not Specified
Recent Forum Posts
Gaea Labs toolset error 2022年3月19日6:46
Hi all,
cannot for the life of me figure out how to get the gaea node working. Can get parameters up if xml is generated but get an unhandled exception error everytime. Tried using legacy node types and still no joy. Have all correct licenses and tried on two separate machines and the same. Latest labs toolset installed and latest houdini production build 19.0531. Also Gaea is up to date. Please Help Me!!
cheers, Matt
cannot for the life of me figure out how to get the gaea node working. Can get parameters up if xml is generated but get an unhandled exception error everytime. Tried using legacy node types and still no joy. Have all correct licenses and tried on two separate machines and the same. Latest labs toolset installed and latest houdini production build 19.0531. Also Gaea is up to date. Please Help Me!!
cheers, Matt
Reading attributes in Ue4 Material Editor 2021年10月2日4:19
Does anyone know of a way to read additional attributes from an HDA in unreal engines material editor?
Currently using all vertex color channels and Alpha but would like another channel if possible.
Tried with custom attributes but cant get it to work. Any help would be great
Currently using all vertex color channels and Alpha but would like another channel if possible.
Tried with custom attributes but cant get it to work. Any help would be great
River Tool 2020年7月25日9:42
Been creating a tool that will create a river for a terrain. A part of my network makes the input curve always go downward by running a simple previous point position wrangle through a for each loop:
vector pos = 0;
pos = point(0, “P”, (@ptnum-1));
if (pos.y < @P.y)
{
@P.y = pos.y;
}
This works just as intended, however, only when the points of the input curve are below the origin (@P.y=0).
I have got round this by transforming the curve before the loop and transforming back by attribute (@xform) afterwards but can anyone explain why this was necessary? Cant for the life of me figure out why.
I have included a hip file
vector pos = 0;
pos = point(0, “P”, (@ptnum-1));
if (pos.y < @P.y)
{
@P.y = pos.y;
}
This works just as intended, however, only when the points of the input curve are below the origin (@P.y=0).
I have got round this by transforming the curve before the loop and transforming back by attribute (@xform) afterwards but can anyone explain why this was necessary? Cant for the life of me figure out why.
Image Not Found
I have included a hip file