Created
August 25, 2024 14:19
-
-
Save johnfredcee/34549022216e84532641de8dfb24fb28 to your computer and use it in GitHub Desktop.
Using Geometry Scripting Polygroups with Unreal in Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
polygroup_ids = unreal.GeometryScriptIndexList() | |
print(polygroup_ids.convert_index_list_to_array()) | |
polygroup_ids_out = unreal.GeometryScript_PolyGroups.get_all_triangle_polygroup_i_ds(dmesh, group_layer, polygroup_ids) | |
polygroup_ids = polygroup_ids_out[1] | |
print(polygroup_ids.convert_index_list_to_array()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment