chore: add FIXME explaining why bevy0.4 isn't compatible

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-02-22 19:59:24 -06:00
parent 89d57ca5f6
commit 050bba9e35
1 changed files with 3 additions and 0 deletions

View File

@ -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);
}
}