Passing Houdini attributes to per instance custom data in UE

   594   2   0
User Avatar
Member
1 posts
Joined: 11月 2025
オフライン
As the title says, is it possible to pass attributes form Houdini into per instance custom data inside Unreal Engine shader graph through Instanced Static Mesh Component?[attach]sahderImage.png

Attachments:
sahderImage.png (51.7 KB)
Enter_a_filename.png (4.2 KB)

User Avatar
Member
1 posts
Joined: 11月 2021
オフライン
you will need to set the attribute name to
and also you need to create another integer attribute equals the total number of per instance custom attributes (in your case = 1 )

so the point wrangle will be like this:

i@unreal_num_custom_floats = 1;
@unreal_per_instance_custom_data0 = custiDat;
User Avatar
スタッフ
563 posts
Joined: 9月 2016
オフライン
Hi,

Yes, the plugin supports per-instance custom data, you'll first want to set their number via:
i@unreal_num_custom_floats = X;
then set the values with
f@unreal_per_instance_custom_data0 = YYY;
...
f@unreal_per_instance_custom_dataX = ZZZ;



See the docs [www.sidefx.com].
  • Quick Links