You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the line of counter not showing on the screen!
but if I add a empty line after it:
...
TextBundle::from_sections([
text_section(Color::GREEN, "\nFPS (SMA): "),
text_section(Color::CYAN, ""),
text_section(Color::GREEN, "\nCounter: "),
text_section(Color::CYAN, "111"),
text_section(Color::CYAN, "\n END"),
])
...
now the Counter appears! but the END not shows on the screen
screenshots
before add text_section(Color::CYAN, "\n END"),
after add text_section(Color::CYAN, "\n END"),
The text was updated successfully, but these errors were encountered:
Bevy version
0.11.0
Relevant system information
rust 1.71
What you did
I add a text bundle to show the fps and a counter:
in setup:
in update:
What went wrong
the line of counter not showing on the screen!
but if I add a empty line after it:
screenshots
before add
text_section(Color::CYAN, "\n END"),
after add
text_section(Color::CYAN, "\n END"),
The text was updated successfully, but these errors were encountered: