chore: add FIXME explaining why bevy0.4 isn't compatible
This commit is contained in:
parent
89d57ca5f6
commit
050bba9e35
|
@ -93,6 +93,9 @@ fn mandelbrot_render_system(
|
||||||
iters,
|
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);
|
texture.data.copy_from_slice(buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue