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:
bodymovin
2024-07-25 01:17:06 +00:00
parent 685e93964d
commit aec635b137
7 changed files with 17 additions and 17 deletions

View File

@ -1 +1 @@
190b920f8108566d55d9cdb1d4bf3d9b96548fcb
04597f29db9096b7f3df078a15b32e84d2a88892

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;