(
&mut self,
font: &SpriteFont,
position: Vec2,
text: &str,
max_chars: Option<usize>,
)
| 269 | } |
| 270 | |
| 271 | pub fn text( |
| 272 | &mut self, |
| 273 | font: &SpriteFont, |
| 274 | position: Vec2, |
| 275 | text: &str, |
| 276 | max_chars: Option<usize>, |
| 277 | ) { |
| 278 | self.text_segments(font, position, &[TextSegment::new(text)], max_chars) |
| 279 | } |
| 280 | |
| 281 | fn push_sprite( |
| 282 | &mut self, |
nothing calls this directly
no test coverage detected