rive_rs/animation/
layer_state.rs1use crate::animation::StateMachineLayerComponent;
6use crate::core::{Core, ObjectRef, OnAdded};
7
8#[derive(Debug, Default)]
9pub struct LayerState {
10 state_machine_layer_component: StateMachineLayerComponent,
11}
12
13impl Core for LayerState {
14 parent_types![(state_machine_layer_component, StateMachineLayerComponent)];
15
16 properties!(state_machine_layer_component);
17}
18
19impl OnAdded for ObjectRef<'_, LayerState> {
20 on_added!(StateMachineLayerComponent);
21}