-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Render Text #1
Labels
C-Feature
A new feature, making something new possible
Milestone
Comments
Closed
aclysma
added a commit
to aclysma/bevy
that referenced
this issue
Aug 25, 2020
…or (bevyengine#1) Add a task newtype so that we don't expose multitask::Task Remove some of the README/license info that was present in the prototype repo Add some doc comments
aclysma
added a commit
to aclysma/bevy
that referenced
this issue
Aug 29, 2020
…or (bevyengine#1) Add a task newtype so that we don't expose multitask::Task Remove some of the README/license info that was present in the prototype repo Add some doc comments
bjorn3
referenced
this issue
in bjorn3/bevy
Jan 12, 2021
This is a significant reduction in the release mode compile times of bevy_diagnostics ``` Benchmark #1: touch crates/bevy_diagnostic/src/lib.rs && cargo build --release -p bevy_diagnostic -j1 Time (mean ± σ): 3.645 s ± 0.009 s [User: 3.551 s, System: 0.094 s] Range (min … max): 3.632 s … 3.658 s 20 runs ``` ``` Benchmark #1: touch crates/bevy_diagnostic/src/lib.rs && cargo build --release -p bevy_diagnostic -j1 Time (mean ± σ): 2.938 s ± 0.012 s [User: 2.850 s, System: 0.090 s] Range (min … max): 2.919 s … 2.969 s 20 runs ```
bjorn3
referenced
this issue
in bjorn3/bevy
Jan 12, 2021
This is a significant reduction in the release mode compile times of bevy_diagnostics ``` Benchmark #1: touch crates/bevy_diagnostic/src/lib.rs && cargo build --release -p bevy_diagnostic -j1 Time (mean ± σ): 3.645 s ± 0.009 s [User: 3.551 s, System: 0.094 s] Range (min … max): 3.632 s … 3.658 s 20 runs ``` ``` Benchmark #1: touch crates/bevy_diagnostic/src/lib.rs && cargo build --release -p bevy_diagnostic -j1 Time (mean ± σ): 2.938 s ± 0.012 s [User: 2.850 s, System: 0.090 s] Range (min … max): 2.919 s … 2.969 s 20 runs ```
cart
pushed a commit
that referenced
this issue
Jan 12, 2021
* Remove AHashExt There is little benefit of Hash*::new() over Hash*::default(), but it does require more code that needs to be duplicated for every Hash* in bevy_utils. It may also slightly increase compile times. * Add StableHash* to bevy_utils * Use StableHashMap instead of HashMap + BTreeSet for diagnostics This is a significant reduction in the release mode compile times of bevy_diagnostics ``` Benchmark #1: touch crates/bevy_diagnostic/src/lib.rs && cargo build --release -p bevy_diagnostic -j1 Time (mean ± σ): 3.645 s ± 0.009 s [User: 3.551 s, System: 0.094 s] Range (min … max): 3.632 s … 3.658 s 20 runs ``` ``` Benchmark #1: touch crates/bevy_diagnostic/src/lib.rs && cargo build --release -p bevy_diagnostic -j1 Time (mean ± σ): 2.938 s ± 0.012 s [User: 2.850 s, System: 0.090 s] Range (min … max): 2.919 s … 2.969 s 20 runs ```
rparrett
referenced
this issue
in rparrett/bevy
Jan 27, 2021
* Remove AHashExt There is little benefit of Hash*::new() over Hash*::default(), but it does require more code that needs to be duplicated for every Hash* in bevy_utils. It may also slightly increase compile times. * Add StableHash* to bevy_utils * Use StableHashMap instead of HashMap + BTreeSet for diagnostics This is a significant reduction in the release mode compile times of bevy_diagnostics ``` Benchmark #1: touch crates/bevy_diagnostic/src/lib.rs && cargo build --release -p bevy_diagnostic -j1 Time (mean ± σ): 3.645 s ± 0.009 s [User: 3.551 s, System: 0.094 s] Range (min … max): 3.632 s … 3.658 s 20 runs ``` ``` Benchmark #1: touch crates/bevy_diagnostic/src/lib.rs && cargo build --release -p bevy_diagnostic -j1 Time (mean ± σ): 2.938 s ± 0.012 s [User: 2.850 s, System: 0.090 s] Range (min … max): 2.919 s … 2.969 s 20 runs ```
bors bot
pushed a commit
that referenced
this issue
May 6, 2021
Handle rotation, fix alignment, update example
exjam
pushed a commit
to exjam/bevy
that referenced
this issue
Mar 23, 2022
handling shadows with skinned animations
Closed
bors bot
pushed a commit
that referenced
this issue
Sep 20, 2022
Test serialization of Bevy's `Duration`, not `std::time::Duration`.
ostwilkens
pushed a commit
to ostwilkens/bevy
that referenced
this issue
Dec 30, 2022
Selene-Amanita
referenced
this issue
in Selene-Amanita/bevy
May 27, 2023
Co-authored-by: harudagondi <[email protected]>
coreh
referenced
this issue
in coreh/bevy
Jan 6, 2024
Compensate for exposure after sampling background color, adjust transmission example
NthTensor
pushed a commit
to NthTensor/bevy
that referenced
this issue
Feb 1, 2024
Added Rational Curves
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bevy should be able to render text to a texture, which can then be used by UI nodes, sprites, 3D models, etc.
The text was updated successfully, but these errors were encountered: