Skip to content

Commit

Permalink
updated keys for transitions
Browse files Browse the repository at this point in the history
Diffs=
04597f29d updated keys for transitions (#7679)
da1bb7745 Make an HBFont from a CTFontRef. (#7661)

Co-authored-by: hernan <hernan@rive.app>
  • Loading branch information
bodymovin and bodymovin committed Jul 25, 2024
1 parent 685e939 commit aec635b
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .rive_head
Original file line number Diff line number Diff line change
@@ -1 +1 @@
190b920f8108566d55d9cdb1d4bf3d9b96548fcb
04597f29db9096b7f3df078a15b32e84d2a88892
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

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

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

Expand Down

0 comments on commit aec635b

Please sign in to comment.