Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
006bb16
progress on docs
laundmo May 19, 2026
81431d2
further docs filing
laundmo May 19, 2026
d8b539b
Merge branch 'main' of github.com:bevyengine/bevy
laundmo May 22, 2026
085adda
Merge branch 'main' into bsn-better-docs
laundmo May 25, 2026
fd755c5
Finish initial pass on both lib.rs
laundmo May 27, 2026
753395a
update and add trait tags for scenes
laundmo May 27, 2026
85564b6
fix typos
laundmo May 27, 2026
afba143
Merge remote-tracking branch 'origin/main' into bsn-better-docs
laundmo May 28, 2026
8f49183
Merge remote-tracking branch 'origin/main' into bsn-better-docs
laundmo Jun 1, 2026
b053e2f
Document bsn asset format can be implemented externally
laundmo Jun 1, 2026
e93c154
fix macro docs
laundmo Jun 1, 2026
462c533
a lot more docs improvements
laundmo Jun 1, 2026
a4c7768
Editorial pass 1
cart Jun 2, 2026
87c3297
Update crates/bevy_scene/macros/src/lib.rs
laundmo Jun 2, 2026
5eed7a1
Update crates/bevy_scene/macros/src/lib.rs
laundmo Jun 2, 2026
36aefdf
Update crates/bevy_scene/macros/src/lib.rs
laundmo Jun 2, 2026
49cc434
Update crates/bevy_scene/macros/src/lib.rs
laundmo Jun 2, 2026
c3f6425
Update crates/bevy_scene/macros/src/lib.rs
laundmo Jun 2, 2026
f087eb5
No semicolons in bsn! macros please
alice-i-cecile Jun 3, 2026
8e3e13f
Phrasing and typos
alice-i-cecile Jun 3, 2026
d252071
Remove comment about how to replicate docs.rs build
alice-i-cecile Jun 3, 2026
0d05b93
Re-add docs for bsn_list!
alice-i-cecile Jun 3, 2026
45dc0a3
Comma should not be on new-line
alice-i-cecile Jun 3, 2026
fadfd14
#Name -> EntityTemplate -> Entity clarification
alice-i-cecile Jun 3, 2026
6957d47
Merge remote-tracking branch 'laundmo/bsn-better-docs' into bsn-bette…
alice-i-cecile Jun 3, 2026
f9ab4c1
Simplify name reference example
alice-i-cecile Jun 3, 2026
374439e
Clean up tables
alice-i-cecile Jun 3, 2026
9320ab5
Remove spurious pub struct Foo used for dev
alice-i-cecile Jun 3, 2026
0783983
Fix odd capitalization
alice-i-cecile Jun 3, 2026
3e94aa0
fix CI
laundmo Jun 6, 2026
91a3f90
re-word enums in bsn docs
laundmo Jun 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/bevy_ecs/src/template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,8 @@ impl<T: Clone + Default + Unpin> FromTemplate for T {
pub trait SpecializeFromTemplate: Sized {}

/// A [`Template`] reference to an [`Entity`].
///
/// This is only valid during scene spawning and should **never** be used as a [`Component`](bevy_ecs::prelude::Component) field.
#[derive(Copy, Clone, Default, Debug)]
pub enum EntityTemplate {
/// A reference to a specific [`Entity`]
Expand Down
Loading
Loading