From 40e206fc94d80d41e0e5433b70430fd4eaebf3c8 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Fri, 27 Jun 2025 11:34:01 +0800 Subject: [PATCH] expose setScene on View --- thermion_dart/lib/src/filament/src/interface/view.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/thermion_dart/lib/src/filament/src/interface/view.dart b/thermion_dart/lib/src/filament/src/interface/view.dart index cc75e5f2..a512e836 100644 --- a/thermion_dart/lib/src/filament/src/interface/view.dart +++ b/thermion_dart/lib/src/filament/src/interface/view.dart @@ -59,6 +59,12 @@ abstract class View { /// /// Future getScene(); + + /// Sets the scene currently associated with this View. + /// + /// + Future setScene(Scene scene); + Future getViewport(); Future setViewport(int width, int height); Future getRenderTarget();