-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[Merged by Bors] - Doc/module style doc blocks for examples #4438
Changes from all commits
ab2b895
9f6925d
c55dbf9
c228971
f2225ec
1fcbfb9
eef3fdb
b8c6817
1c5c560
c2e78cf
9c0c7b1
301d75b
445327c
1b3e16b
7b18e71
c1b1da0
583acd4
f9fd8b9
8313bac
64d11cb
dad654a
b260137
cbc2470
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//! Displays a single [`Sprite`], created from an image. | ||
|
||
use bevy::prelude::*; | ||
|
||
fn main() { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//! A simple 3D scene with light shining over a cube sitting on a plane. | ||
|
||
use bevy::prelude::*; | ||
|
||
fn main() { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//! Loads and renders a glTF file as a scene. | ||
|
||
use bevy::prelude::*; | ||
|
||
fn main() { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//! Plays animations from a skinned glTF. | ||
|
||
use bevy::prelude::*; | ||
|
||
fn main() { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//! An example that shows how to handle drag and drop of files in an app. | ||
|
||
use bevy::prelude::*; | ||
|
||
fn main() { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//! An empty application (does nothing) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't love that this example exists, but that's not this PR's fault. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You want me to delete it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was trying to say that this should be done in a separate PR, yeah. |
||
|
||
use bevy::prelude::*; | ||
|
||
fn main() { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//! An empty application with default plugins. | ||
|
||
use bevy::prelude::*; | ||
|
||
fn main() { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.