-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Diffs= e0816fdfa update flutter objects (#7797) 8c7ac0329 added a blt command for render targets that do not support VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT (#7757) 66d9f1725 Better premake support for Visual Studio (#7779) f0da6a7a0 Add Xcode support to build_rive.sh (#7780) c12b0bb24 Added support for xcode builds (#7774) Co-authored-by: hernan <[email protected]>
- Loading branch information
Showing
9 changed files
with
263 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0dc0b435ffb0df61de0afcdc2cea0c69bb8fedd4 | ||
e0816fdfa0adde292f343b4a018b2f515a8bc1c4 |
14 changes: 14 additions & 0 deletions
14
lib/src/generated/animation/listener_viewmodel_change_base.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Core automatically generated | ||
// lib/src/generated/animation/listener_viewmodel_change_base.dart. | ||
// Do not modify manually. | ||
|
||
import 'package:rive/src/rive_core/animation/listener_action.dart'; | ||
|
||
abstract class ListenerViewModelChangeBase extends ListenerAction { | ||
static const int typeKey = 487; | ||
@override | ||
int get coreType => ListenerViewModelChangeBase.typeKey; | ||
@override | ||
Set<int> get coreTypes => | ||
{ListenerViewModelChangeBase.typeKey, ListenerActionBase.typeKey}; | ||
} |
45 changes: 45 additions & 0 deletions
45
lib/src/generated/data_bind/converters/data_converter_base.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Core automatically generated | ||
// lib/src/generated/data_bind/converters/data_converter_base.dart. | ||
// Do not modify manually. | ||
|
||
import 'package:rive/src/core/core.dart'; | ||
|
||
abstract class DataConverterBase<T extends CoreContext> extends Core<T> { | ||
static const int typeKey = 488; | ||
@override | ||
int get coreType => DataConverterBase.typeKey; | ||
@override | ||
Set<int> get coreTypes => {DataConverterBase.typeKey}; | ||
|
||
/// -------------------------------------------------------------------------- | ||
/// Name field with key 662. | ||
static const int namePropertyKey = 662; | ||
static const String nameInitialValue = ''; | ||
String _name = nameInitialValue; | ||
|
||
/// Non-unique identifier, used to give friendly names to data converters. | ||
String get name => _name; | ||
|
||
/// Change the [_name] field value. | ||
/// [nameChanged] will be invoked only if the field's value has changed. | ||
set name(String value) { | ||
if (_name == value) { | ||
return; | ||
} | ||
String from = _name; | ||
_name = value; | ||
if (hasValidated) { | ||
nameChanged(from, value); | ||
} | ||
} | ||
|
||
void nameChanged(String from, String to); | ||
|
||
@override | ||
void copy(Core source) { | ||
super.copy(source); | ||
if (source is DataConverterBase) { | ||
_name = source._name; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
lib/src/rive_core/animation/listener_viewmodel_change.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import 'package:rive/src/generated/animation/listener_viewmodel_change_base.dart'; | ||
import 'package:rive/src/rive_core/state_machine_controller.dart'; | ||
import 'package:rive_common/math.dart'; | ||
|
||
export 'package:rive/src/generated/animation/listener_viewmodel_change_base.dart'; | ||
|
||
class ListenerViewModelChange extends ListenerViewModelChangeBase { | ||
@override | ||
void perform(StateMachineController controller, Vec2D position, | ||
Vec2D previousPosition) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.