indigo icon indicating copy to clipboard operation
indigo copied to clipboard

An FP game engine for Scala.

Results 167 indigo issues
Sort by recently updated
recently updated
newest added

These should give the same answer. There's probably a good reason they don't, but it's unexpected. ``` Rectangle(0,0,160, 160).overlaps(Circle(Point(100, 100), 5)) // true Circle(Point(100, 100), 5).overlaps(Rectangle(0,0,160, 160)) // false ```

bug

Generally, Indigo has been at the bleeding edge of Scala / Scala.js versions. I'm wondering though if it would be sensible to stay on the LTS version.... Indigo's development has...

At the moment click events only fire on a left mouse click, with no way to discern a right click from any other click event. We should fire the click...

workaround

>You might get a quick and easy performance boost by making it a sealed abstract class instead of a sealed trait. > That would make the access to the private...

Suggestion from @hobnob which seems very sensible now I think about it. We've talked about it before but I think it's more achievable following the recent plugin improvements. ## Context...

enhancement

`FrameContext.pointers` is meant to keep track of the current position/tilt/buttons etc of all of the pointers being used. However, currently as soon as the main pointer (in my scenario a...

help welcome

Problems: - Sticky. Circle and Box colliders take a while to get around them - Sensitive. If you make a platform of boxes and slide another box along them, it...

help welcome

I noticed on the pirate demo that we seem to be creating `LightsData` even if there are no lights during scene processing. Could this be skipped? Anything else we can...

Could we return the rate of change of various properties, particularly velocity and position? The use case is that for visual presentation reasons, it can be useful to know how...

workaround

Reports of problems on Windows, doesn't seem to be to browser specific, GPU is an Intel Iris. Pong on Windows: ![image](https://github.com/PurpleKingdomGames/indigo/assets/908709/8d9b1be5-0a6a-4add-920d-ccde8ea27a7c) Pirate demo... On Linux: ![image](https://github.com/PurpleKingdomGames/indigo/assets/908709/61d4a131-edaa-43c1-89f7-00add109962f) On Windows: ![image](https://github.com/PurpleKingdomGames/indigo/assets/908709/861e51be-0527-42ad-bad7-1b4770d0a76d) From...

bug