Telzhaak
93040ef9a0
Check asset-path existence. Previously App just crashed if not ( #345 )
...
* Check asset-path existence. Previously App just crashed if not
* rustfmt
* Relegated Error-message to ChannelAssetHandler
* Removed needless return statement
2020-08-26 12:08:51 -07:00
Forest Anderson
b718a2063d
Set CI to run on master ( #349 )
2020-08-26 11:57:55 -07:00
Forest Anderson
4562a0925a
Separate CI jobs ( #357 )
2020-08-26 11:57:35 -07:00
Elias
9aff0bcc2a
Add support for binary glTF (.glb) ( #271 )
...
Add support for binary glTF (.glb)
2020-08-25 16:55:08 -07:00
Tom Bebb
c9000deafa
Add solus deps to linux_dependencies doc ( #331 )
...
Co-authored-by: Tom Bebbington <tophattedcoder@gmail.com>
2020-08-25 16:50:44 -07:00
stefee
9413915e97
Add .vscode to gitignore file ( #347 )
2020-08-25 16:48:21 -07:00
stefee
034b5876aa
Fix default UI node size ( #304 )
...
Fix default node size
2020-08-25 12:18:43 -07:00
Xavientois
0ae74a4a4d
Some examples of documentation ( #338 )
2020-08-24 17:57:10 -07:00
Fabian Würfl
7b4bdef77c
Support multiline Texts ( #183 )
2020-08-24 17:13:24 -07:00
VitalyR
c78187e6df
add an option about display server protocol, and create document docs/cargo_features.md
( #249 )
...
add an option about display server protocol, and create document `docs/cargo_features.md`
2020-08-24 17:06:08 -07:00
Daniel McNab
f7131509b9
Send an AssetEvent when modifying using get_id_mut ( #323 )
...
Fixes #321
2020-08-24 11:20:41 -07:00
Forest Anderson
6c43afff08
Added CI badge to readme, changed workflow name ( #325 )
2020-08-24 11:16:52 -07:00
Hugo Lindsay
37afd00149
Update zld path to use alias (mac fast compile config) ( #314 )
...
update zld path
2020-08-24 11:15:41 -07:00
Carter Anderson
d00ce1c61c
1000 commits!
2020-08-24 00:42:07 -07:00
Daniel Jordaan
8b6556c750
Fix unresolved import in window settings example ( #311 )
...
Got an unresolved import of 'bevy_window' with the window settings example. Hopefully this is the correct way to resolve it.
2020-08-23 23:55:06 -07:00
Hugo Lindsay
986dd67cc8
make "fast build" config 40% faster on mac ( #312 )
2020-08-23 19:05:24 -07:00
wyhaya
7b6fbcb932
Add Arch / Manjaro dependencies ( #275 )
2020-08-23 13:18:46 -07:00
multun
022a31fd8f
fix formatting / clippy warnings ( #295 )
2020-08-22 18:35:40 -07:00
Carter Anderson
b925e22949
0.1.3 upgrade
2020-08-22 10:16:52 -07:00
Carter Anderson
35c59d2d59
use wgpu 0.6.0 release
2020-08-22 09:42:00 -07:00
Boutillier
4eb437ab2e
Fixes #134 and #135 with a slight hit on performances as get_or_assign_index will now always assign ( #247 )
2020-08-22 09:28:38 -07:00
kaflu
2dadc86fb0
Change CullMode to none for sprites ( #241 )
...
With `CullMode::Back`, a sprite image that is rotated in x,y plane won't display properly
Co-authored-by: kaflu <kaflu@users.noreply.github.com>
2020-08-21 19:52:31 -07:00
mfrancis107
47f3a0b8be
Changes ScheduleRunnerPlugin RunMode::Loop to run on fixed interval ( #233 )
...
* Changes ScheduleRunnerPlugin RunMode::Loop to run on fixed interval
* fix formatting
2020-08-21 19:31:46 -07:00
Carter Anderson
7c3b49cb6f
upgrade to latest wgpu
2020-08-21 18:36:32 -07:00
TehPers
7a79dcc46c
Add serialize/deserialize to some input types ( #281 )
2020-08-21 18:13:50 -07:00
DGriffin91
20335d5643
Add links to Stack Overflow and Awesome Bevy ( #282 )
2020-08-21 18:11:03 -07:00
Carter Anderson
6b11e58dcd
readme formatting tweaks
2020-08-21 15:06:50 -07:00
Halfwhit
bfd6e4a935
Add linux dependencies to README.md ( #257 )
...
* Add linux dependencies to README.md
* Update README.md
2020-08-21 14:59:34 -07:00
8bp
68d419d40f
Add repeating flag to Timer ( #165 )
...
Repeating timers will reset themselves upon finishing, carrying over any
excess time during the last tick. This fixes timer drift upon resetting.
2020-08-21 14:57:25 -07:00
Lachlan Sneff
1eca55e571
Replace std synchronization primitives with parking_lot ( #210 )
...
* Replace std::sync::Mutex with parking_lot::Mutex
* Replace std::sync::RwLock with parking_lot::RwLock
2020-08-21 14:55:16 -07:00
Carter Anderson
fc53ff9a71
Add "Focus Areas" to readme
2020-08-21 12:50:05 -07:00
Jake Kerr
db1bf6478c
Allow calling winit with the 'run_return' variant of the run function ( #243 )
...
This adds a new WinitConfig resource that can be used to configure the behavior of winit.
When `return_from_run` is set to `true`, `App::run()` will return on `target_os` configurations that
support it.
Closes bevyengine/bevy#167 .
2020-08-20 22:37:19 -07:00
Thirds
505c79b60d
README.md link points to the correct example ( #225 )
...
The 2D Rendering example texture_atlas URL was pointing to the ./2d/sprite_sheet.rs example. This has now been fixed.
2020-08-20 17:29:10 -07:00
Claire C
45312a945a
Basic mouse scroll-wheel event ( #222 )
...
add simple mouse wheel event + example
2020-08-20 17:04:01 -07:00
GabLotus
3c5251f6f2
Updating README.md with subreddit info and link to Code of Conduct ( #263 )
...
* update readme
2020-08-20 17:03:26 -07:00
Boutillier
38d3da5b86
Fix #187 . Multiple return instead of continue inside for loops. ( #230 )
2020-08-20 16:09:04 -07:00
Csányi István
268b520105
Simplify GLTF loader code ( #245 )
...
simplify gtlf loader code
2020-08-20 14:06:16 -07:00
Carter Anderson
1ebb7e44ff
Merge pull request #189 from StarArawn/bind-group-reflect-fix
...
Reflect shader stage for bind groups.
2020-08-20 12:57:38 -07:00
Carter Anderson
979a1346a1
Merge pull request #236 from stefee/patch-1
...
Add a code of conduct
2020-08-19 22:01:51 -07:00
Carter Anderson
e31f576484
Merge pull request #206 from multun/clippy
...
Add clippy support and fix all warnings / errors
2020-08-19 21:33:28 -07:00
stefee
1f7cdbd4ce
Update CODE_OF_CONDUCT.md
...
* Remove 'when something happens' section
* Add pledge from Contributor Covenant version 2.0
2020-08-19 20:25:58 +01:00
stefee
dc988818d7
Update CODE_OF_CONDUCT.md
...
* Remove harassment definition and link to Citizen Code of Conduct instead
* Remove statement on reverse-isms to bring the doc more in line with the original Rust CoC
2020-08-19 20:20:19 +01:00
stefee
322fad76c7
Update CODE_OF_CONDUCT.md
...
* Tweak wording for readability
2020-08-19 16:11:00 +01:00
stefee
f12990feb9
Update CODE_OF_CONDUCT.md
...
* Move line about "reverse-isms" to the Conduct section
2020-08-19 15:52:24 +01:00
John Mitchell
d4d68f6670
Fixed tests.
2020-08-19 10:16:35 -04:00
John Mitchell
f1b0d04e53
Fixed formatting.
2020-08-19 10:00:45 -04:00
John Mitchell
131a5e9167
Merge branch 'master' into bind-group-reflect-fix
2020-08-19 09:24:22 -04:00
stefee
9648008e0f
Update CODE_OF_CONDUCT.md
...
* Minor edit for clarity
2020-08-19 09:34:21 +01:00
stefee
49d4784a6d
Update CODE_OF_CONDUCT.md
...
* Move moderation section to the bottom
* Add attribution links to each section
2020-08-19 08:47:48 +01:00
stefee
4462eb495d
Update CODE_OF_CONDUCT.md
2020-08-19 05:37:21 +01:00