From: subhransu mohanty Date: Tue, 4 Jun 2019 08:45:48 +0000 (+0900) Subject: rlottie/parser: opacity attribute can be float X-Git-Tag: submit/tizen/20190619.051039~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3bfdd55f4e8499fc5e25bc5099eebcbf44503780;p=platform%2Fcore%2Fuifw%2Flottie-player.git rlottie/parser: opacity attribute can be float --- diff --git a/src/lottie/lottiemodel.h b/src/lottie/lottiemodel.h index 2fe1117..9cf17b2 100644 --- a/src/lottie/lottiemodel.h +++ b/src/lottie/lottiemodel.h @@ -578,7 +578,7 @@ public: public: FillRule mFillRule{FillRule::Winding}; /* "r" */ LOTAnimatable mColor; /* "c" */ - LOTAnimatable mOpacity{100}; /* "o" */ + LOTAnimatable mOpacity{100}; /* "o" */ bool mEnabled{true}; /* "fillEnabled" */ }; @@ -603,7 +603,7 @@ public: int getDashInfo(int frameNo, float *array) const; public: LOTAnimatable mColor; /* "c" */ - LOTAnimatable mOpacity{100}; /* "o" */ + LOTAnimatable mOpacity{100}; /* "o" */ LOTAnimatable mWidth{0}; /* "w" */ CapStyle mCapStyle{CapStyle::Flat}; /* "lc" */ JoinStyle mJoinStyle{JoinStyle::Miter}; /* "lj" */