Implement support for animation of transform and some text properties

This commit is contained in:
Mikael Sand
2018-10-11 03:31:47 +03:00
parent b568a633ed
commit 2a43579404
4 changed files with 34 additions and 44 deletions
@@ -426,6 +426,9 @@ abstract public class RenderableShadowNode extends VirtualNode {
if (mRegion == null && mFillPath != null) {
mRegion = getRegion(mFillPath);
}
if (mRegion == null && mPath != null) {
mRegion = getRegion(mPath);
}
if (mStrokeRegion == null && mStrokePath != null) {
mStrokeRegion = getRegion(mStrokePath);
}