Get the size for text with overrides and scale * @return {Vector2}
()
| 916 | /** Get the size for text with overrides and scale |
| 917 | * @return {Vector2} */ |
| 918 | getTextSize() |
| 919 | { |
| 920 | return vec2( |
| 921 | this.textWidth || this.textFitScale * this.size.x, |
| 922 | this.textHeight || this.textFitScale * this.size.y); |
| 923 | } |
| 924 | |
| 925 | /** Called when the navigation button is pressed on this object */ |
| 926 | navigatePressed() { this.click(); } |