Jean-David Moisan

Results 24 issues of Jean-David Moisan

This feature request is based on how Krita does it. In Krita, you can zoom in or out by pressing [ctrl] + [Middle mouse click] + dragging. Likewise you can...

feature backlog

Instead of only being able to export the canvas to a single image, it would be nice to be able to select an area, then divide that area in rows...

feature backlog

launched last Tuesday (March 2) and it uses the FTL protocol instead of RTMP. OBS already supports streaming to it out of the box. Would it be possible to add...

Currently, a component's lifecycle looks like this: Init: - `Constructor` Update: - `UpdatePrefSize` - `UpdateSetup` - `UpdateInput` - `Update` - `Draw` One issue is that layouts are done in `UpdatePrefSize`...

enhancement

Find a way to extend the API to provide support for components such as dropdowns, or even tooltips.

When a key is held and the game loses focus (IsActive becomes false), it's possible for the player to let go of that key. When that happens the `Released()` condition...

bug

Some work has been started with the static scroll and pointer API: ```csharp if (MouseCondition.Scrolled()) { someValue += MouseCondition.ScrollDelta; } ``` ```csharp if (MouseCondition.PointerMoved()) { someValue += MouseCondition.PointerDelta; } ```...

enhancement

In some cases, some keys shouldn't trigger `Pressed` or `Released`. For example: `CTRL` + `A`. If we're currently holding `A`, then pressing `CTRL` shouldn't trigger a `CTRL` + `A` press....

enhancement

Sometimes it's nice to be able to press a key, have a `Pressed()` event happen, wait X milliseconds, then have `Held()` trigger every Y milliseconds.

enhancement

It would be nice to have a built-in way to support combos. For example press `A` then `B` to trigger an action. Perhaps with a timeout option before it's too...

enhancement