Checking reference of DataTableRow is possible by clicking ‘Find Row References’ of TableRow. We can check out what assets are using DataTable and TableRow.
However, if I make custom ‘MyDataTableRowHandle’ that inherits DataTableRowHandle to add some functions, Reference Viewer doesn’t show assets that are using row as ‘MyDataTableRowHandle.’ If I change custom handle to original ‘DataTableRowHandle,’ it works.
I added ‘AssetRegistrySearchable’ property in my custom handle, but it didn’t work.
Other assets that are using inherited objects (such as components) is working well. Only DataTableRowHandle makes problem. I expect that since the type of DataTableRowHandle is Struct, there is some problem during registering dependencies, and Reference Viewer can’t find assets in saved registry.
Is there any solution for this? Thank you.