From 753d46fd95b6bad6d1d46b7809ea00fc33336378 Mon Sep 17 00:00:00 2001 From: Aevyrie Date: Wed, 18 Dec 2024 16:25:11 -0800 Subject: [PATCH] Enable motion blur on WASM (#16893) This feature was tested with WASM, WebGL, and WebGPU. It should work on these targets. I think this was an oversight in the original PR. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eb7b377c5a51a..56aac74f53cb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -995,7 +995,7 @@ doc-scrape-examples = true name = "Motion Blur" description = "Demonstrates per-pixel motion blur" category = "3D Rendering" -wasm = false +wasm = true [[example]] name = "order_independent_transparency"