
Damien Pernuit
dpernuit
About Me
EXPERTISE
Developer
INDUSTRY
Gamedev
Connect
LOCATION
France
WEBSITE
Houdini Skills
Availability
Not Specified
My Badges
SideFX Staff
Since Sep 2016
Recent Forum Posts
COPs import missing textures Sept. 3, 2025, 11:06 a.m.
Hi,
Just replied to you on git:
Yes, that is expected, and indicated in the docs:
https://www.sidefx.com/docs/houdini/unreal/materials.html#generate [www.sidefx.com]
At the moment, we support the same types of channels on the COP Preview node than the one we support on MATnets and older types of materia, for textures: only base color, metallic, specular, roughness, emissive color, opacity, normal.
Just replied to you on git:
Yes, that is expected, and indicated in the docs:
https://www.sidefx.com/docs/houdini/unreal/materials.html#generate [www.sidefx.com]
To generate materials from your HDA using a COP Preview Node:
Ensure the mesh generated in your HDA has UVs.
At the GEO/SOP level, add a COP Preview Node to your generated geometry.
Only some of the material channels will be translated to the Unreal material. See the below table for which ones.
At the moment, we support the same types of channels on the COP Preview node than the one we support on MATnets and older types of materia, for textures: only base color, metallic, specular, roughness, emissive color, opacity, normal.
Collision_geo May 22, 2025, 2:40 p.m.
Hey,
Have you tried refining the proxy mesh output ? (right click > refine)
By default, the plugin uses Houdini Proxy meshes (that's why there's a Houdini logo on top of Flippy).
They are much faster to create than StaticMeshes, but wont come with LODs or colliders.
The idea is that they will give you faster visual feedback when tweaking the parameters - and can easily be refined when you're satisfied with the results.
Proxies can be disabled either in the plugin settings, or in your HDA's detail panel.
Have you tried refining the proxy mesh output ? (right click > refine)
By default, the plugin uses Houdini Proxy meshes (that's why there's a Houdini logo on top of Flippy).
They are much faster to create than StaticMeshes, but wont come with LODs or colliders.
The idea is that they will give you faster visual feedback when tweaking the parameters - and can easily be refined when you're satisfied with the results.
Proxies can be disabled either in the plugin settings, or in your HDA's detail panel.
How to set defaults for Asset Options on an HDA? March 3, 2025, 6:46 p.m.
Hi,
Please see https://www.sidefx.com/docs/houdini/unreal/attributes.html#generic
Generic attributes can be applied to the HDA itself, if the attribute is set as a detail attribute.
To get the list of attributes that can apply to a given class, type the following CMD in Unreal:
Houdini.DumpGenericAttribute XXX
XXX being the name of the class, in your case, you'll type
Houdini.DumpGenericAttribute UHoudiniAssetComponent
Which will list all properties that can be modified on a HoudiniAssetComponent, you'll be interested in:
unreal_uproperty_bOutputless : bOutputless (Outputless) - UE TYPE: BoolProperty - H TYPE: int.
so to automatically change the "Do Not Generate Outputs" toggle, you want to create the detail attribute "unreal_uproperty_bOutputless" and set its value to 1.
Please see https://www.sidefx.com/docs/houdini/unreal/attributes.html#generic
Generic attributes can be applied to the HDA itself, if the attribute is set as a detail attribute.
To get the list of attributes that can apply to a given class, type the following CMD in Unreal:
Houdini.DumpGenericAttribute XXX
XXX being the name of the class, in your case, you'll type
Houdini.DumpGenericAttribute UHoudiniAssetComponent
Which will list all properties that can be modified on a HoudiniAssetComponent, you'll be interested in:
unreal_uproperty_bOutputless : bOutputless (Outputless) - UE TYPE: BoolProperty - H TYPE: int.
so to automatically change the "Do Not Generate Outputs" toggle, you want to create the detail attribute "unreal_uproperty_bOutputless" and set its value to 1.