remove getBoundingBoxAsset and destroyBoundingBoxAsset from ThermionAsset

This commit is contained in:
Nick Fisher
2025-06-23 12:17:38 +08:00
parent 73b32f9c1e
commit 00debf509d

View File

@@ -101,24 +101,6 @@ abstract class ThermionAsset {
/// [createBoundingBoxAsset] before this method.
Future<Aabb3> getBoundingBox();
///
/// The bounding box for this asset, as an actual renderable asset.
/// This is safe to call multiple times; if [boundingBoxAsset] is non-null,
/// this will simply return the existing bounding box asset.
///
/// You will still need to call [Scene.add] to add this to the scene.
///
Future<ThermionAsset> getBoundingBoxAsset() {
throw UnimplementedError();
}
///
///
///
Future destroyBoundingBoxAsset(Scene scene) {
throw UnimplementedError();
}
///
///
///