Skip to content

Add a level mechanism to the demos #251

Add a level mechanism to the demos

Add a level mechanism to the demos #251

Triggered via push July 3, 2024 16:53
Status Failure
Total duration 7m 51s
Artifacts

ci.yml

on: push
Matrix: Tests
Update Docs and Demos in GitHub Pages
7m 37s
Update Docs and Demos in GitHub Pages
Rustfmt
5s
Rustfmt
Fit to window
Zoom out
Zoom in

Annotations

1 error and 169 warnings
Update Docs and Demos in GitHub Pages
Process completed with exit code 101.
Rustfmt
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Rustfmt
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
using `clone` on type `ThingToShow` which implements the `Copy` trait: demos/src/ui/mod.rs#L209
warning: using `clone` on type `ThingToShow` which implements the `Copy` trait --> demos/src/ui/mod.rs:209:57 | 209 | let mut thing_to_show = ui.memory_mut(|mem| mem.data.get_temp_mut_or_default::<ThingToShow>(thing_to_show_id).clone()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*mem.data.get_temp_mut_or_default::<ThingToShow>(thing_to_show_id)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy = note: `#[warn(clippy::clone_on_copy)]` on by default
associated function `make_system` is never used: demos/src/moving_platform.rs#L63
warning: associated function `make_system` is never used --> demos/src/moving_platform.rs:63:8 | 54 | impl MovingPlatform { | ------------------- associated function in this implementation ... 63 | fn make_system<V: Component>( | ^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
unused variable: `setting_from_ui`: demos/src/ui/mod.rs#L285
warning: unused variable: `setting_from_ui` --> demos/src/ui/mod.rs:285:5 | 285 | setting_from_ui: Res<DemoUiPhysicsBackendActive>, | ^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_setting_from_ui`
unused variable: `app`: demos/src/moving_platform.rs#L7
warning: unused variable: `app` --> demos/src/moving_platform.rs:7:21 | 7 | fn build(&self, app: &mut App) { | ^^^ help: if this is intentional, prefix it with an underscore: `_app` | = note: `#[warn(unused_variables)]` on by default
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L309
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:309:18 | 309 | |mut cmd, use_collision_groups| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L287
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:287:48 | 287 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L279
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:279:39 | 279 | ("ball (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L273
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:273:42 | 273 | ("ball (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L265
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:265:41 | 265 | ("flat (overfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L257
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:257:39 | 257 | ("flat (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L249
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:249:42 | 249 | ("flat (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L243
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:243:29 | 243 | ("no", |mut cmd| { | ----^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L355
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:355:59 | 355 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `use_collision_groups`: demos/src/bin/platformer_3d.rs#L309
warning: unused variable: `use_collision_groups` --> demos/src/bin/platformer_3d.rs:309:27 | 309 | |mut cmd, use_collision_groups| { | ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L309
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:309:22 | 309 | |mut cmd, use_collision_groups| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L287
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:287:52 | 287 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L279
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:279:43 | 279 | ("ball (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L273
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:273:46 | 273 | ("ball (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L265
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:265:45 | 265 | ("flat (overfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L257
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:257:43 | 257 | ("flat (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L249
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:249:46 | 249 | ("flat (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L243
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:243:33 | 243 | ("no", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd` | = note: `#[warn(unused_variables)]` on by default
unused import: `make_update_plot_data_system`: demos/src/ui/mod.rs#L25
warning: unused import: `make_update_plot_data_system` --> demos/src/ui/mod.rs:25:22 | 25 | use self::plotting::{make_update_plot_data_system, plot_source_rolling_update}; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L282
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:282:18 | 282 | |mut cmd, use_collision_groups| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L263
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:263:49 | 263 | .with_checkbox("Lock Tilt", false, |mut cmd, lock_tilt| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L255
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:255:39 | 255 | ("Ball (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L249
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:249:42 | 249 | ("Ball (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L243
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:243:41 | 243 | ("flat (overfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L237
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:237:39 | 237 | ("Flat (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L231
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:231:42 | 231 | ("Flat (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L225
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:225:32 | 225 | ("Point", |mut cmd| { | ----^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L330
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:330:59 | 330 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `use_collision_groups`: demos/src/bin/platformer_2d.rs#L282
warning: unused variable: `use_collision_groups` --> demos/src/bin/platformer_2d.rs:282:27 | 282 | |mut cmd, use_collision_groups| { | ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L282
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:282:22 | 282 | |mut cmd, use_collision_groups| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L263
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:263:53 | 263 | .with_checkbox("Lock Tilt", false, |mut cmd, lock_tilt| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L255
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:255:43 | 255 | ("Ball (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L249
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:249:46 | 249 | ("Ball (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L243
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:243:45 | 243 | ("flat (overfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L237
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:237:43 | 237 | ("Flat (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L231
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:231:46 | 231 | ("Flat (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L225
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:225:36 | 225 | ("Point", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd` | = note: `#[warn(unused_variables)]` on by default
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L323
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:323:18 | 323 | |mut cmd, use_collision_groups| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L301
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:301:48 | 301 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L293
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:293:39 | 293 | ("ball (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L287
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:287:42 | 287 | ("ball (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L279
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:279:41 | 279 | ("flat (overfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L271
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:271:39 | 271 | ("flat (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L263
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:263:42 | 263 | ("flat (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L257
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:257:29 | 257 | ("no", |mut cmd| { | ----^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L369
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:369:59 | 369 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `use_collision_groups`: demos/src/bin/shooter_like.rs#L323
warning: unused variable: `use_collision_groups` --> demos/src/bin/shooter_like.rs:323:27 | 323 | |mut cmd, use_collision_groups| { | ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L323
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:323:22 | 323 | |mut cmd, use_collision_groups| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L301
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:301:52 | 301 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L293
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:293:43 | 293 | ("ball (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L287
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:287:46 | 287 | ("ball (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L279
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:279:45 | 279 | ("flat (overfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L271
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:271:43 | 271 | ("flat (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L263
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:263:46 | 263 | ("flat (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L257
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:257:33 | 257 | ("no", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd` | = note: `#[warn(unused_variables)]` on by default
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L282
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:282:18 | 282 | |mut cmd, use_collision_groups| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L263
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:263:49 | 263 | .with_checkbox("Lock Tilt", false, |mut cmd, lock_tilt| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L255
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:255:39 | 255 | ("Ball (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L249
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:249:42 | 249 | ("Ball (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L243
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:243:41 | 243 | ("flat (overfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L237
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:237:39 | 237 | ("Flat (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L231
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:231:42 | 231 | ("Flat (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_2d.rs#L225
warning: variable does not need to be mutable --> demos/src/bin/platformer_2d.rs:225:32 | 225 | ("Point", |mut cmd| { | ----^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L330
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:330:59 | 330 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `use_collision_groups`: demos/src/bin/platformer_2d.rs#L282
warning: unused variable: `use_collision_groups` --> demos/src/bin/platformer_2d.rs:282:27 | 282 | |mut cmd, use_collision_groups| { | ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L282
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:282:22 | 282 | |mut cmd, use_collision_groups| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L263
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:263:53 | 263 | .with_checkbox("Lock Tilt", false, |mut cmd, lock_tilt| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L255
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:255:43 | 255 | ("Ball (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L249
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:249:46 | 249 | ("Ball (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L243
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:243:45 | 243 | ("flat (overfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L237
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:237:43 | 237 | ("Flat (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L231
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:231:46 | 231 | ("Flat (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_2d.rs#L225
warning: unused variable: `cmd` --> demos/src/bin/platformer_2d.rs:225:36 | 225 | ("Point", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd` | = note: `#[warn(unused_variables)]` on by default
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L309
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:309:18 | 309 | |mut cmd, use_collision_groups| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L287
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:287:48 | 287 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L279
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:279:39 | 279 | ("ball (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L273
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:273:42 | 273 | ("ball (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L265
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:265:41 | 265 | ("flat (overfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L257
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:257:39 | 257 | ("flat (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L249
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:249:42 | 249 | ("flat (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/platformer_3d.rs#L243
warning: variable does not need to be mutable --> demos/src/bin/platformer_3d.rs:243:29 | 243 | ("no", |mut cmd| { | ----^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L355
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:355:59 | 355 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `use_collision_groups`: demos/src/bin/platformer_3d.rs#L309
warning: unused variable: `use_collision_groups` --> demos/src/bin/platformer_3d.rs:309:27 | 309 | |mut cmd, use_collision_groups| { | ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L309
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:309:22 | 309 | |mut cmd, use_collision_groups| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L287
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:287:52 | 287 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L279
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:279:43 | 279 | ("ball (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L273
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:273:46 | 273 | ("ball (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L265
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:265:45 | 265 | ("flat (overfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L257
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:257:43 | 257 | ("flat (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L249
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:249:46 | 249 | ("flat (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/platformer_3d.rs#L243
warning: unused variable: `cmd` --> demos/src/bin/platformer_3d.rs:243:33 | 243 | ("no", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd` | = note: `#[warn(unused_variables)]` on by default
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L323
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:323:18 | 323 | |mut cmd, use_collision_groups| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L301
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:301:48 | 301 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L293
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:293:39 | 293 | ("ball (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L287
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:287:42 | 287 | ("ball (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L279
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:279:41 | 279 | ("flat (overfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L271
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:271:39 | 271 | ("flat (exact)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L263
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:263:42 | 263 | ("flat (underfit)", |mut cmd| { | ----^^^ | | | help: remove this `mut`
variable does not need to be mutable: demos/src/bin/shooter_like.rs#L257
warning: variable does not need to be mutable --> demos/src/bin/shooter_like.rs:257:29 | 257 | ("no", |mut cmd| { | ----^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L369
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:369:59 | 369 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `use_collision_groups`: demos/src/bin/shooter_like.rs#L323
warning: unused variable: `use_collision_groups` --> demos/src/bin/shooter_like.rs:323:27 | 323 | |mut cmd, use_collision_groups| { | ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L323
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:323:22 | 323 | |mut cmd, use_collision_groups| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L301
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:301:52 | 301 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L293
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:293:43 | 293 | ("ball (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L287
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:287:46 | 287 | ("ball (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L279
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:279:45 | 279 | ("flat (overfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L271
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:271:43 | 271 | ("flat (exact)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L263
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:263:46 | 263 | ("flat (underfit)", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
unused variable: `cmd`: demos/src/bin/shooter_like.rs#L257
warning: unused variable: `cmd` --> demos/src/bin/shooter_like.rs:257:33 | 257 | ("no", |mut cmd| { | ^^^ help: if this is intentional, prefix it with an underscore: `_cmd` | = note: `#[warn(unused_variables)]` on by default
using `clone` on type `ThingToShow` which implements the `Copy` trait: demos/src/ui/mod.rs#L209
warning: using `clone` on type `ThingToShow` which implements the `Copy` trait --> demos/src/ui/mod.rs:209:57 | 209 | let mut thing_to_show = ui.memory_mut(|mem| mem.data.get_temp_mut_or_default::<ThingToShow>(thing_to_show_id).clone()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*mem.data.get_temp_mut_or_default::<ThingToShow>(thing_to_show_id)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy = note: `#[warn(clippy::clone_on_copy)]` on by default
associated function `make_system` is never used: demos/src/moving_platform.rs#L63
warning: associated function `make_system` is never used --> demos/src/moving_platform.rs:63:8 | 54 | impl MovingPlatform { | ------------------- associated function in this implementation ... 63 | fn make_system<V: Component>( | ^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
unused variable: `setting_from_ui`: demos/src/ui/mod.rs#L285
warning: unused variable: `setting_from_ui` --> demos/src/ui/mod.rs:285:5 | 285 | setting_from_ui: Res<DemoUiPhysicsBackendActive>, | ^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_setting_from_ui`
unused variable: `app`: demos/src/moving_platform.rs#L7
warning: unused variable: `app` --> demos/src/moving_platform.rs:7:21 | 7 | fn build(&self, app: &mut App) { | ^^^ help: if this is intentional, prefix it with an underscore: `_app` | = note: `#[warn(unused_variables)]` on by default
unused import: `make_update_plot_data_system`: demos/src/ui/mod.rs#L25
warning: unused import: `make_update_plot_data_system` --> demos/src/ui/mod.rs:25:22 | 25 | use self::plotting::{make_update_plot_data_system, plot_source_rolling_update}; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
Clippy
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (ubuntu-latest, nightly)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Tests (ubuntu-latest, nightly)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Tests (ubuntu-latest, nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (ubuntu-latest, nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (ubuntu-latest, nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (ubuntu-latest, nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (ubuntu-latest, 1.76.0)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Tests (ubuntu-latest, 1.76.0)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Tests (ubuntu-latest, 1.76.0)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (ubuntu-latest, 1.76.0)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (ubuntu-latest, 1.76.0)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (ubuntu-latest, 1.76.0)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Docs
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Docs
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Docs: demos/src/ui/mod.rs#L25
unused import: `make_update_plot_data_system`
Docs: demos/src/moving_platform.rs#L7
unused variable: `app`
Docs: demos/src/ui/mod.rs#L285
unused variable: `setting_from_ui`
Docs: demos/src/moving_platform.rs#L63
associated function `make_system` is never used
Docs
`tnua-demos-crate` (lib) generated 4 warnings (run `cargo fix --lib -p tnua-demos-crate` to apply 3 suggestions)
Docs: src/builtins/walk.rs#L29
unresolved link to `Self::up`
Docs: src/builtins/walk.rs#L33
unresolved link to `Self::up`
Docs: src/builtins/walk.rs#L46
unresolved link to `Self::up`
Docs: src/builtins/walk.rs#L52
unresolved link to `Self::up`
Docs: src/builtins/walk.rs#L523
unresolved link to `TnuaBuiltinWalk::up`
Docs: demos/src/ui/mod.rs#L25
unused import: `make_update_plot_data_system`
Docs: demos/src/moving_platform.rs#L7
unused variable: `app`
Docs: demos/src/ui/mod.rs#L285
unused variable: `setting_from_ui`
Docs: demos/src/moving_platform.rs#L63
associated function `make_system` is never used
Docs
`tnua-demos-crate` (lib) generated 4 warnings (run `cargo fix --lib -p tnua-demos-crate` to apply 3 suggestions)
Update Docs and Demos in GitHub Pages
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, jetli/[email protected], actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Update Docs and Demos in GitHub Pages
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, jetli/[email protected], actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Update Docs and Demos in GitHub Pages
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Update Docs and Demos in GitHub Pages
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Update Docs and Demos in GitHub Pages
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Update Docs and Demos in GitHub Pages
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/