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 Carter Anderson
parent be2301dd78
commit e20b78f9ab

View File

@ -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"