• Home
  • Raw
  • Download

Lines Matching refs:jprops

68     const skjson::ObjectValue* jprops = (*janimator)["a"];  in Make()  local
69 if (!jprops) { in Make()
92 new TextAnimator(std::move(selectors), *jprops, abuilder, acontainer)); in Make()
176 const skjson::ObjectValue& jprops, in TextAnimator() argument
182 acontainer->bind(*abuilder, jprops["p" ], fTextProps.position); in TextAnimator()
183 acontainer->bind(*abuilder, jprops["o" ], fTextProps.opacity); in TextAnimator()
184 acontainer->bind(*abuilder, jprops["fo"], fTextProps.fill_opacity); in TextAnimator()
185 acontainer->bind(*abuilder, jprops["so"], fTextProps.stroke_opacity); in TextAnimator()
186 acontainer->bind(*abuilder, jprops["t" ], fTextProps.tracking); in TextAnimator()
187 acontainer->bind(*abuilder, jprops["ls"], fTextProps.line_spacing); in TextAnimator()
190 fRequiresAnchorPoint |= acontainer->bind(*abuilder, jprops["s"], fTextProps.scale); in TextAnimator()
194 fRequiresAnchorPoint |= acontainer->bind(*abuilder, jprops["rx"], fTextProps.rotation.x); in TextAnimator()
195 fRequiresAnchorPoint |= acontainer->bind(*abuilder, jprops["ry"], fTextProps.rotation.y); in TextAnimator()
196 fRequiresAnchorPoint |= acontainer->bind(*abuilder, jprops["r" ], fTextProps.rotation.z); in TextAnimator()
198 fHasFillColor = acontainer->bind(*abuilder, jprops["fc"], fTextProps.fill_color ); in TextAnimator()
199 fHasStrokeColor = acontainer->bind(*abuilder, jprops["sc"], fTextProps.stroke_color); in TextAnimator()
200 fHasBlur = acontainer->bind(*abuilder, jprops["bl"], fTextProps.blur ); in TextAnimator()