Todos in design document & Removal of unused warnings temporarily
This commit is contained in:
parent
4ce5aa4219
commit
84e38948e6
11
Design.md
11
Design.md
|
@ -15,3 +15,14 @@ but the map contains loot like a battle royale.
|
||||||
Make sure guns are usable with iron sights.
|
Make sure guns are usable with iron sights.
|
||||||
|
|
||||||
Multiplayer
|
Multiplayer
|
||||||
|
|
||||||
|
# TODOS:
|
||||||
|
- [ ] Detach player rotation from character model
|
||||||
|
- [ ] Weapon Sway
|
||||||
|
- [ ] Fixing leaning
|
||||||
|
- [ ] Inspect animation (procedural)
|
||||||
|
- [ ] Reload animation (procedural)
|
||||||
|
- [ ] Real world magazines
|
||||||
|
- [ ] Rewriting bullet physics to use raycasts & kinematic rigidbodies (logic controlled)
|
||||||
|
- [ ] Low Ready & High ready (low ready == more speed | high ready == more accuracy)
|
||||||
|
- [ ] Auto Low ready when gun collider hits object OR when player starts sprinting
|
|
@ -49,6 +49,7 @@ pub struct CaptureHandUsageQueryParams<'w, 's> {
|
||||||
children: Query<'w, 's, &'static Children>,
|
children: Query<'w, 's, &'static Children>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(unused)]
|
||||||
#[allow(irrefutable_let_patterns)]
|
#[allow(irrefutable_let_patterns)]
|
||||||
pub fn capture_hand_usage(
|
pub fn capture_hand_usage(
|
||||||
mut resources: CaptureHandUsageResourcesParams,
|
mut resources: CaptureHandUsageResourcesParams,
|
||||||
|
|
Loading…
Reference in New Issue