Remove some asset examples from web showcase (#14973)

# Objective

- `custom_asset_reader` and `extra_asset_source` examples are not
working on web.
- Fixes #14689

## Solution

- Make these examples `wasm=false` per
https://github.com/bevyengine/bevy/issues/14689#issuecomment-2313064396

## Testing
This commit is contained in:
akimakinai 2024-08-30 01:47:58 +09:00 committed by GitHub
parent 565324daa3
commit 1cca4f2968
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1407,7 +1407,8 @@ doc-scrape-examples = true
name = "Custom Asset IO"
description = "Implements a custom AssetReader"
category = "Assets"
wasm = true
# Incompatible with the asset path patching of the example-showcase tool
wasm = false
[[example]]
name = "embedded_asset"
@ -1429,7 +1430,8 @@ doc-scrape-examples = true
name = "Extra asset source"
description = "Load an asset from a non-standard asset source"
category = "Assets"
wasm = true
# Uses non-standard asset path
wasm = false
[[example]]
name = "hot_asset_reloading"