Open hajimehoshi opened 2 months ago
RunGameOptions.StrictContextRestoration was added recently. There is no real use case to use this with ebiten.RunGameWithOptions, and this works only with mobile.SetGameWithOptions.
ebiten.RunGameWithOptions
mobile.SetGameWithOptions
In order to improve UX, let's define SetGameOptions like this:
SetGameOptions
type SetGameOptions struct { RunGameOptions StrictContextRestoration bool }
As this is a breaking change, let's do this in v3.
No response
Operating System
What feature would you like to be added?
RunGameOptions.StrictContextRestoration was added recently. There is no real use case to use this with
ebiten.RunGameWithOptions
, and this works only withmobile.SetGameWithOptions
.In order to improve UX, let's define
SetGameOptions
like this:As this is a breaking change, let's do this in v3.
Why is this needed?
No response