diff --git a/lib/filament_controller.dart b/lib/filament_controller.dart index a54a4842..5fd286fc 100644 --- a/lib/filament_controller.dart +++ b/lib/filament_controller.dart @@ -277,4 +277,9 @@ abstract class FilamentController { /// [x] and [y] must be in local logical coordinates (i.e. where 0,0 is at top-left of the FilamentWidget). /// void pick(int x, int y); + + /// + /// Retrieves the name assigned to the given FilamentEntity (usually corresponds to the glTF mesh name). + /// + String? getNameForEntity(FilamentEntity entity); }