The Scene Manager component creates and configures a Scenic scene graph, and an input pipeline on launch.
Clients can connect to fuchsia.session.scene.Manager
to interact with the scene graph. Currently, clients can set the root view of the scene, and focus views.
The scene manager also currently provides a default input pipeline implementation for the workstation product.
This component can be configured during product assembly via the following configuration schema to define a specific idleness threshold for activity recency detection:
product_assembly_configuration("my_product") { platform = { input = { idle_threshold_minutes = 15 } } }
The component-for-test
target also sets a default value for testing:
fuchsia_structured_config_values("test_config") { cm_label = ":manifest" values = { idle_threshold_minutes = 2 } }
This component is also configured to support light sensor devices. Products may want to provide calibration information to make use of light sensing features. By default we provide empty calibration information, which disables light sensor processing.
The production package //src/ui/bin/scene_manager:scene_manager
includes meta/scene_manager.cml
, which exists to serves routes related to scene management and input through human interface devices.
Generally, test packages should include their own copy of a component to ensure hermeticity with respect to package loading semantics, and can do so by including //src/ui/bin/scene_manager:scene_manager_component_for_test
.