Skip to content
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

Picking event ordering #14862

Merged
merged 28 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
454cb25
Move `winit::WinitEvent` to `window::WindowEvent`
NthTensor Aug 20, 2024
85730c4
Add prototype unified event dispatcher
NthTensor Aug 22, 2024
e7d742d
Appease clippy
NthTensor Aug 22, 2024
7b0a0c5
Swap ordering of Drop and DragEnd events
NthTensor Aug 22, 2024
97d7757
Update docs and cleanup events
NthTensor Aug 29, 2024
ec773bd
Merge remote-tracking branch 'upstream/main' into unified_pointer_events
NthTensor Aug 29, 2024
d25d09d
Improve docs
NthTensor Aug 30, 2024
f377315
Add bevy_winit dep
NthTensor Aug 30, 2024
f3af43c
Flatten input module
NthTensor Aug 30, 2024
e870646
Clean up events and add Cancel event
NthTensor Aug 30, 2024
64ce18b
Clean up and re-order events
NthTensor Aug 30, 2024
7ac155e
Merge remote-tracking branch 'upstream' into unified_pointer_events
NthTensor Aug 30, 2024
c60431a
Rename bevy_events to bevy_window_events
NthTensor Aug 30, 2024
4c5c209
Remove bad bevy_winit dep
NthTensor Aug 30, 2024
862f96e
Fix typos
NthTensor Aug 30, 2024
8f3139a
Fix doc links
NthTensor Aug 30, 2024
4807687
Fix small ordering bug
NthTensor Aug 30, 2024
2908240
Update doc links again
NthTensor Aug 31, 2024
874981c
Fix system ambiguity
NthTensor Aug 31, 2024
e8824b8
Fix bevy_window import
NthTensor Aug 31, 2024
1ede775
Additional CI fixes
NthTensor Sep 1, 2024
69bf0d6
Fix import
NthTensor Sep 1, 2024
07748d1
Move mega-event dispatch back into winit
NthTensor Sep 3, 2024
4fd45b0
Merge remote-tracking branch 'upstream' into unified_pointer_events
NthTensor Sep 3, 2024
8bdf052
Increment AD test number because macos hates me
NthTensor Sep 3, 2024
9b23706
More doclink fixes
NthTensor Sep 3, 2024
a3edeaf
Address feadback
NthTensor Sep 4, 2024
d31a743
Fix spelling
NthTensor Sep 4, 2024
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
5 changes: 2 additions & 3 deletions crates/bevy_picking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,19 @@ license = "MIT OR Apache-2.0"

[dependencies]
bevy_app = { path = "../bevy_app", version = "0.15.0-dev" }
bevy_asset = { path = "../bevy_asset", version = "0.15.0-dev" }
bevy_derive = { path = "../bevy_derive", version = "0.15.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-dev" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-dev" }
bevy_input = { path = "../bevy_input", version = "0.15.0-dev" }
bevy_math = { path = "../bevy_math", version = "0.15.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-dev" }
bevy_render = { path = "../bevy_render", version = "0.15.0-dev" }
bevy_time = { path = "../bevy_time", version = "0.15.0-dev" }
bevy_transform = { path = "../bevy_transform", version = "0.15.0-dev" }
bevy_utils = { path = "../bevy_utils", version = "0.15.0-dev" }
bevy_window = { path = "../bevy_window", version = "0.15.0-dev" }

bevy_time = { path = "../bevy_time", version = "0.15.0-dev" }
bevy_asset = { path = "../bevy_asset", version = "0.15.0-dev" }

uuid = { version = "1.1", features = ["v4"] }

[lints]
Expand Down
Loading