Sean

Results 24 issues of Sean

Please leave comments here about the experimental GeoJSON support.

help wanted

Currently, the library is specifically coded to work with even/odd fill rule. It would be nice if there was an option for other fill rules.

> as far as I know they all have the issue that if a new envelope (gate-on) is started when a previous one is still playing, there will be a...

It would be nice if the docs in the README specified that the minimum delay for browsers seems to be 20ms: https://blogs.msdn.microsoft.com/ieinternals/2010/06/07/trivia-animated-gif-timing/ More citation would be nice, but that seems...

The big feature for v3 should be a system for distributing libraries (sharing code). I should be able to pull in a music library, or a saving library, and everything...

``` .struct Player = iwram(-1) // all layers // ... .end ``` Something like `iwram(v)` where `v` is a 32-bit number that says whether the struct should be allocated to...

Now that we can allocate structs to IWRAM or EWRAM, it would be nice to have the equivalent for code: ``` .begin irqNone = iwram .arm mov r0, #0x04000000 ldr...

What if macros were just: ``` .script export foo = { { 'temp:reg', 'shift:int', 'save:regrange' }, // parameters ` // body ldr $temp, =123 lsls $temp, #$shift push $save `...

enhancement

Would be nice to do something like: ``` .script i8 pack.huff pack.lz77 {1, 2, 3, 4, 5} .end ``` and also: ``` .pack huff .pack lz77 .i8 1, 2, 3,...

enhancement