mirror of
https://github.com/rive-app/rive-flutter.git
synced 2025-08-06 16:40:27 +08:00

just trying to flush through some of the bits coming out of running generate core runtime & generate core runtime without making a mess in other pr's . this is split into four commits which might be helpful when looking at the changes here. Diffs= ad72cfce5 Run generate (#5490) 7ee5f7d5a Increases the margin for the approx call to some of the wangs formula… (#5506) 2f224da7f Runtime ellipsis (#5482) Co-authored-by: Maxwell Talbot <talbot.maxwell@gmail.com>
15 lines
472 B
Dart
15 lines
472 B
Dart
/// Core automatically generated
|
|
/// lib/src/generated/animation/layer_state_base.dart.
|
|
/// Do not modify manually.
|
|
|
|
import 'package:rive/src/rive_core/animation/state_machine_layer_component.dart';
|
|
|
|
abstract class LayerStateBase extends StateMachineLayerComponent {
|
|
static const int typeKey = 60;
|
|
@override
|
|
int get coreType => LayerStateBase.typeKey;
|
|
@override
|
|
Set<int> get coreTypes =>
|
|
{LayerStateBase.typeKey, StateMachineLayerComponentBase.typeKey};
|
|
}
|