| 491 | } |
| 492 | |
| 493 | int TextLine::hit_test(float p_coords) const |
| 494 | { |
| 495 | const_cast<TextLine*>(this)->_shape(); |
| 496 | |
| 497 | return TS->shaped_text_hit_test_position(rid, p_coords); |
| 498 | } |
| 499 | |
| 500 | TextLine::TextLine(const String& p_text, const Ref<Font>& p_font, int p_font_size, const String& p_language, TextServer::Direction p_direction, TextServer::Orientation p_orientation) |
| 501 | { |
nothing calls this directly
no test coverage detected