mirror of
https://github.com/rive-app/rive-ios.git
synced 2026-01-18 17:11:28 +01:00
feature: add support for color interpolation in converter (#10545) b0f6516eec
* feature: add support for color interpolation in converter Co-authored-by: hernan <hernan@rive.app>
This commit is contained in:
@@ -22,6 +22,7 @@ typedef NS_ENUM(NSInteger, RiveDataBindingViewModelInstancePropertyDataType) {
|
||||
RiveDataBindingViewModelInstancePropertyDataTypeSymbolListIndex,
|
||||
RiveDataBindingViewModelInstancePropertyDataTypeAssetImage,
|
||||
RiveDataBindingViewModelInstancePropertyDataTypeArtboard,
|
||||
RiveDataBindingViewModelInstancePropertyDataTypeInput,
|
||||
} NS_SWIFT_NAME(RiveDataBindingViewModelInstancePropertyData.DataType);
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@@ -40,6 +40,8 @@ RiveDataBindingViewModelInstancePropertyDataTypeFromRuntime(rive::DataType type)
|
||||
return RiveDataBindingViewModelInstancePropertyDataTypeAssetImage;
|
||||
case rive::DataType::artboard:
|
||||
return RiveDataBindingViewModelInstancePropertyDataTypeArtboard;
|
||||
case rive::DataType::input:
|
||||
return RiveDataBindingViewModelInstancePropertyDataTypeInput;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user