Skip to content

Commit ba6da4a

Browse files
committed
Add a function for computing a world point from a screen point
1 parent e967a83 commit ba6da4a

File tree

328 files changed

+14601
-5331
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

328 files changed

+14601
-5331
lines changed

.cargo/config_fast_builds

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Add the contents of this file to `config.toml` to enable "fast build" configuration. Please read the notes below.
22

33
# NOTE: For maximum performance, build using a nightly compiler
4-
# If you are using rust stable, remove the "-Zshare-generics=y" below (as well as "-Csplit-debuginfo=unpacked" when building on macOS).
4+
# If you are using rust stable, remove the "-Zshare-generics=y" below.
55

66
[target.x86_64-unknown-linux-gnu]
77
linker = "/usr/bin/clang"
@@ -10,7 +10,7 @@ rustflags = ["-Clink-arg=-fuse-ld=lld", "-Zshare-generics=y"]
1010
# NOTE: you must manually install https://github.com/michaeleisel/zld on mac. you can easily do this with the "brew" package manager:
1111
# `brew install michaeleisel/zld/zld`
1212
[target.x86_64-apple-darwin]
13-
rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld", "-Zshare-generics=y", "-Csplit-debuginfo=unpacked"]
13+
rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld", "-Zshare-generics=y"]
1414

1515
[target.x86_64-pc-windows-msvc]
1616
linker = "rust-lld.exe"

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Bug Report
33
about: Report a bug to help us improve!
44
title: ''
5-
labels: ''
5+
labels: bug, needs-triage
66
assignees: ''
77
---
88

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Docs Improvement
3+
about: Help us write better docs to catch common issues!
4+
title: ''
5+
labels: documentation, needs-triage
6+
assignees: ''
7+
---
8+
9+
## How can Bevy's documentation be improved?
10+
11+
Provide a link to the documentation and describe how it could be improved. In what ways is it incomplete, incorrect, or misleading?
12+
13+
If you have suggestions on exactly what the new docs should say, feel free to include them here. Or alternatively, make the changes yourself and [create a pull request](https://bevyengine.org/learn/book/contributing/code/) instead.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Feature Request
33
about: Propose a new feature!
44
title: ''
5-
labels: ''
5+
labels: enhancement, needs-triage
66
assignees: ''
77
---
88

.github/bors.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ status = [
77
"build-wasm (nightly, ubuntu-latest)",
88
"build-android",
99
"markdownlint",
10+
"check-markdown-links",
11+
"run-examples",
12+
"check-doc",
1013
]
1114

1215
use_squash_merge = true
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
(
2+
exit_after: Some(300)
3+
)

.github/example-run/breakout.ron

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
(
2+
exit_after: Some(1800)
3+
)

.github/example-run/contributors.ron

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
(
2+
exit_after: Some(1800)
3+
)

.github/example-run/load_gltf.ron

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
(
2+
exit_after: Some(300)
3+
)

.github/example-run/scene.ron

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
(
2+
exit_after: Some(1800)
3+
)

0 commit comments

Comments
 (0)