You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I understood, this crate is designed to internally include macroquad as its own dependency (most probably to ensure nothings breaks) and therefore the user of egui-macroquad are not supposed to add both macroquad and egui-macroquad as dependencies.
Meaning, this is not going to work (it causes a panic in my case)
[dependencies]
macroquad = "0.4.5"# or its variants, like { version = "0.4.5", default-features = false }egui-macroquad = "0.15.0"
If so, what's the process of updating egui-macroquad to use more recent versions of macroquad? As of now, egui-macroquad depends onmacroquad 0.3.x while 0.4.x is out for a while.
The text was updated successfully, but these errors were encountered:
For anyone else who's having this issue: I did some research and tried to update egui-macroquad to use macroquad 4.X manually.
This isn't possible yet because we first need equi-miniquad to support miniquad 4.X.
The egui-miniquad repository has the commit for this already, but it's not released.
Looks like we first need to wait for egui-miniquad 0.15 to be released.
And then it should be possible to upgrade egui-macroquad manually since it's just one file.
Until then, the solution is to stick with macroquad 3.X.
Hi
As far as I understood, this crate is designed to internally include
macroquad
as its own dependency (most probably to ensure nothings breaks) and therefore the user ofegui-macroquad
are not supposed to add bothmacroquad
andegui-macroquad
as dependencies.Meaning, this is not going to work (it causes a panic in my case)
If so, what's the process of updating
egui-macroquad
to use more recent versions ofmacroquad
? As of now,egui-macroquad
depends onmacroquad 0.3.x
while0.4.x
is out for a while.The text was updated successfully, but these errors were encountered: