Chaos fracture information and functionalities

Is there any way to get or set certain parameters of single chaos fractures? Can I get a reference to those fractures within a blueprint and for example set a material parameter for them or get their location?

I cant really find any information on that topic.

Hi

The geometry collection component is the place that provide various ways to get or set information on bones/items

General use case, is to use a trace in a blueprint that tells you which part was hit by the trace and get the hit item index to query information ( like mass / extend for example ) or to apply strain or breaking velocity
Not all information have getters / setters though

To get the dynamic transform ( during simulation ) the best way right now would be to use the socket functions since each piece of a geometry collection is exposed as a socket
If you only need the rest transform ( before break ) you can use GetLocalRestTransforms

I hope this helps