aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/skottie/Skottie.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/skottie/Skottie.cpp')
-rw-r--r--experimental/skottie/Skottie.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/experimental/skottie/Skottie.cpp b/experimental/skottie/Skottie.cpp
index becf3bf470..da3023d2e4 100644
--- a/experimental/skottie/Skottie.cpp
+++ b/experimental/skottie/Skottie.cpp
@@ -471,10 +471,9 @@ std::vector<sk_sp<sksg::GeometryNode>> AttachTrimGeometryEffect(
[](sksg::TrimEffect* node, const ScalarValue& e) {
node->setEnd(e * 0.01f);
});
- // TODO: "offset" doesn't currently work the same as BM - figure out what's going on.
BindProperty<ScalarValue>(jtrim["o"], ctx, trim,
[](sksg::TrimEffect* node, const ScalarValue& o) {
- node->setOffset(o * 0.01f);
+ node->setOffset(o / 360);
});
}