From 429b8eb93bc7d05681d227ead14c88733227f67a Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Wed, 16 Jul 2025 13:00:08 +0800 Subject: [PATCH] doc: improve addToScene/removeFromScene documentation --- thermion_dart/lib/src/viewer/src/thermion_viewer_base.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/thermion_dart/lib/src/viewer/src/thermion_viewer_base.dart b/thermion_dart/lib/src/viewer/src/thermion_viewer_base.dart index fd7e0589..f48a9377 100644 --- a/thermion_dart/lib/src/viewer/src/thermion_viewer_base.dart +++ b/thermion_dart/lib/src/viewer/src/thermion_viewer_base.dart @@ -344,13 +344,14 @@ abstract class ThermionViewer { int getCameraCount(); /// - /// Adds the asset to the scene, meaning the asset will be rendered/visible. + /// Adds the asset to the scene. All renderable entities attached to + /// the asset will be visible. /// Future addToScene(covariant ThermionAsset asset); /// - /// Removes the asset from the scene, meaning the asset will not be rendered/visible. - /// The asset itself will remain valid. + /// Removes the asset from the scene. None of the renderable entities + /// attached to the asset will be visible, but the asset itself remains valid. /// Future removeFromScene(covariant ThermionAsset asset); }