(props)
| 96 | } |
| 97 | |
| 98 | function getScaleY(props) { |
| 99 | if (props.scaleY != null) { |
| 100 | return props.scaleY; |
| 101 | } else if (props.scale != null) { |
| 102 | return props.scale; |
| 103 | } else { |
| 104 | return 1; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | function isSameFont(oldFont, newFont) { |
| 109 | if (oldFont === newFont) { |