mirror of
https://github.com/rive-app/rive-flutter
synced 2025-07-05 21:55:58 +00:00
updated keys for transitions
Diffs= 04597f29d updated keys for transitions (#7679) da1bb7745 Make an HBFont from a CTFontRef. (#7661) Co-authored-by: hernan <hernan@rive.app>
This commit is contained in:
@ -1 +1 @@
|
||||
190b920f8108566d55d9cdb1d4bf3d9b96548fcb
|
||||
04597f29db9096b7f3df078a15b32e84d2a88892
|
||||
|
@ -19,8 +19,8 @@ abstract class TransitionValueBooleanComparatorBase
|
||||
};
|
||||
|
||||
/// --------------------------------------------------------------------------
|
||||
/// Value field with key 640.
|
||||
static const int valuePropertyKey = 640;
|
||||
/// Value field with key 647.
|
||||
static const int valuePropertyKey = 647;
|
||||
static const bool valueInitialValue = false;
|
||||
bool _value = valueInitialValue;
|
||||
bool get value => _value;
|
||||
|
@ -19,8 +19,8 @@ abstract class TransitionValueColorComparatorBase
|
||||
};
|
||||
|
||||
/// --------------------------------------------------------------------------
|
||||
/// Value field with key 644.
|
||||
static const int valuePropertyKey = 644;
|
||||
/// Value field with key 651.
|
||||
static const int valuePropertyKey = 651;
|
||||
static const int valueInitialValue = 0xFF1D1D1D;
|
||||
int _value = valueInitialValue;
|
||||
int get value => _value;
|
||||
|
@ -19,8 +19,8 @@ abstract class TransitionValueEnumComparatorBase
|
||||
};
|
||||
|
||||
/// --------------------------------------------------------------------------
|
||||
/// Value field with key 646.
|
||||
static const int valuePropertyKey = 646;
|
||||
/// Value field with key 653.
|
||||
static const int valuePropertyKey = 653;
|
||||
static const int valueInitialValue = -1;
|
||||
int _value = valueInitialValue;
|
||||
|
||||
|
@ -19,8 +19,8 @@ abstract class TransitionValueNumberComparatorBase
|
||||
};
|
||||
|
||||
/// --------------------------------------------------------------------------
|
||||
/// Value field with key 645.
|
||||
static const int valuePropertyKey = 645;
|
||||
/// Value field with key 652.
|
||||
static const int valuePropertyKey = 652;
|
||||
static const double valueInitialValue = 0;
|
||||
double _value = valueInitialValue;
|
||||
double get value => _value;
|
||||
|
@ -19,8 +19,8 @@ abstract class TransitionValueStringComparatorBase
|
||||
};
|
||||
|
||||
/// --------------------------------------------------------------------------
|
||||
/// Value field with key 647.
|
||||
static const int valuePropertyKey = 647;
|
||||
/// Value field with key 654.
|
||||
static const int valuePropertyKey = 654;
|
||||
static const String valueInitialValue = '';
|
||||
String _value = valueInitialValue;
|
||||
String get value => _value;
|
||||
|
@ -16,8 +16,8 @@ abstract class TransitionViewModelConditionBase extends TransitionCondition {
|
||||
};
|
||||
|
||||
/// --------------------------------------------------------------------------
|
||||
/// LeftComparatorId field with key 641.
|
||||
static const int leftComparatorIdPropertyKey = 641;
|
||||
/// LeftComparatorId field with key 648.
|
||||
static const int leftComparatorIdPropertyKey = 648;
|
||||
static const int leftComparatorIdInitialValue = -1;
|
||||
int _leftComparatorId = leftComparatorIdInitialValue;
|
||||
|
||||
@ -41,8 +41,8 @@ abstract class TransitionViewModelConditionBase extends TransitionCondition {
|
||||
void leftComparatorIdChanged(int from, int to);
|
||||
|
||||
/// --------------------------------------------------------------------------
|
||||
/// RightComparatorId field with key 642.
|
||||
static const int rightComparatorIdPropertyKey = 642;
|
||||
/// RightComparatorId field with key 649.
|
||||
static const int rightComparatorIdPropertyKey = 649;
|
||||
static const int rightComparatorIdInitialValue = -1;
|
||||
int _rightComparatorId = rightComparatorIdInitialValue;
|
||||
|
||||
@ -66,8 +66,8 @@ abstract class TransitionViewModelConditionBase extends TransitionCondition {
|
||||
void rightComparatorIdChanged(int from, int to);
|
||||
|
||||
/// --------------------------------------------------------------------------
|
||||
/// OpValue field with key 643.
|
||||
static const int opValuePropertyKey = 643;
|
||||
/// OpValue field with key 650.
|
||||
static const int opValuePropertyKey = 650;
|
||||
static const int opValueInitialValue = 0;
|
||||
int _opValue = opValueInitialValue;
|
||||
|
||||
|
Reference in New Issue
Block a user