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
I think the position parameters for ui functions on macroquad::ui::Ui should be changed because using Option is quite misleading.
A better idea should be with an enum kind of like this:
enumPosition{Auto,Absolute(Vec2),// Previous position type// We can now add other position types like// Percent(f32), (like bevy)// ...}
The text was updated successfully, but these errors were encountered:
I think the position parameters for ui functions on macroquad::ui::Ui should be changed because using Option is quite misleading.
A better idea should be with an enum kind of like this:
The text was updated successfully, but these errors were encountered: