TextBundle examples. #2585
Unanswered
The-DevBlog
asked this question in
Q&A
Replies: 1 comment 9 replies
-
Have you seen this one? https://github.com/bevyengine/bevy/blob/main/examples/ui/text.rs If there's something you don't understand in the example, feel free to ask follow up questions here or on discord |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to use the 2d TextBundle with using
App::build()
instead ofApp::new()
? I currently am using Bevy's main release branch and not wanting to port things over to another pre-release version at the moment. I cloned down the text2d example and it works fine. When I change the code fromApp::new()
toApp::build()
and add the.system()
to my systems, I can compile but nothing renders on the game window.Link to repo
App::new()
App::build()
Beta Was this translation helpful? Give feedback.
All reactions