From f053c2f852c406b9962d525737daba07dafb89b2 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Wed, 11 Jun 2025 09:48:44 +0800 Subject: [PATCH] add removeEntity method on Scene --- thermion_dart/lib/src/filament/src/interface/scene.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/thermion_dart/lib/src/filament/src/interface/scene.dart b/thermion_dart/lib/src/filament/src/interface/scene.dart index 07540578..fc368532 100644 --- a/thermion_dart/lib/src/filament/src/interface/scene.dart +++ b/thermion_dart/lib/src/filament/src/interface/scene.dart @@ -13,8 +13,14 @@ abstract class Scene { /// Removes all renderable entities in [asset] from this scene. /// + /// Future remove(covariant ThermionAsset asset); + /// Removes [entity] from this scene. + /// + /// + Future removeEntity(ThermionEntity entity); + /// Renders an outline around [entity] with the given color. ///