From 050bba9e35c75d2b3cc9b86ca30eda7ff3cb6ac4 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Mon, 22 Feb 2021 19:59:24 -0600 Subject: [PATCH] chore: add FIXME explaining why bevy0.4 isn't compatible --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index d858866..000340e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -93,6 +93,9 @@ fn mandelbrot_render_system( iters, ); + // FIXME: This will not work due to https://github.com/bevyengine/bevy/issues/1161 + // The workaround involves "getting a mutable borrow of the ColorMaterial you use to display the Texture" + // according to @FrancoisM#2474, a developer of Bevy on Discord texture.data.copy_from_slice(buf); } }