From e20b78f9ab2fdb28ee08f5f240b0b1fedb983690 Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Wed, 9 Aug 2023 14:06:16 -0700 Subject: [PATCH] Fix gamepad viewer being marked as a non-wasm example (#9399) # Objective This example stopped being built for the website after the example-building was reworked in (https://github.com/bevyengine/bevy-website/issues/720 + #9168). This seems to have just been a mistake when defining this particular example's metadata. See https://github.com/bevyengine/bevy-website/issues/726 ## Solution Update its metadata to indicate that it works with wasm. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6ccf7a3244b77..188a03a2115a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1742,7 +1742,7 @@ path = "examples/tools/gamepad_viewer.rs" name = "Gamepad Viewer" description = "Shows a visualization of gamepad buttons, sticks, and triggers" category = "Tools" -wasm = false +wasm = true [[example]] name = "nondeterministic_system_order"