From e87d3cccbe329783572ecb0d4e3d130a99694508 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 1703a0500e363..62ce8db2060d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1752,7 +1752,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"