Kyle J. Kemp

Results 243 issues of Kyle J. Kemp

this would be helpful for people who don't want to save an environment variable somewhere, and would rather keep it project specific.

enhancement

## What `-A` should be defaulted to true - destructive actions should not happen by default ## Details I accidentally forgot -A and wiped all of my labels + correlations...

cli

Something I noticed today when porting my code from JS to TS, I wanted to use RNG.clone().setSeed() so I wasn't overriding the global RNG instance, and was using a unique...

Is there a map generation algorithm that supports rooms of a given size in a maze, while still having a fully-connected maze? ## --- Want to back this issue? **[Post...

Suppose I wanted to flicker text on the screen; how do I clear previous text? I've tried this: ``` if(this.flicker) { display.drawText(33, 12, 'Generating ...'); } else { display.drawText(33, 12,...

Will this support the JSON export of Tiled as well?

as it is, trying to filter by the items in the array is frustrating as only the value is filtered on. this change allows for filtering on both.

It'd be awesome if this were installable via bower!

Is there a way to stop this? I looked at the internals and it didn't seem to have any "stop" function. I'm running this in a meteor environment and trying...

Right now I'm doing this: ``` this.playerPatchQueue[player.username].patches.push(...patch.patches.filter(p => { // ideally, it would not generate these patches, but we take what we can return !p.path.includes('_') && !p.path.includes('createdAt') && !p.path.includes('currentTick') &&...