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.
This commit is contained in:
Rob Parrett 2023-08-09 14:06:16 -07:00 committed by GitHub
parent c1a5428f8e
commit e87d3cccbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1752,7 +1752,7 @@ path = "examples/tools/gamepad_viewer.rs"
name = "Gamepad Viewer" name = "Gamepad Viewer"
description = "Shows a visualization of gamepad buttons, sticks, and triggers" description = "Shows a visualization of gamepad buttons, sticks, and triggers"
category = "Tools" category = "Tools"
wasm = false wasm = true
[[example]] [[example]]
name = "nondeterministic_system_order" name = "nondeterministic_system_order"