Andrew Safigan

Results 20 comments of Andrew Safigan

It seems odd not to have control over individual tracks and streams. For me, I would like to use one music channel and one sound effects channel so that the...

I don't know if this should be a different issue but I would love a fail slow feature flag or a separate function. It would continue parsing after the first...

Also note that typescript's type system is [turning complete](https://github.com/Microsoft/TypeScript/issues/14833). Or at least it isn't possible to know if a type can ever be resolved. This is a huge issue because...

I was having trouble with this too. Whenever I add a member to a class that inherited from Group, the group type on those member would all be Group not...

@stevenolay I have decided to not use dart in my project. Sorry I can't give you any suggestions.

ndc is a 3d space so you can project a 3d point. `world_to_ndc()` returns a `Vec3` so simply providing the inverse I think makes sense. Plus I only think advanced...

I have a branch with this exact code locally along with other functions. Implementing these functions was pretty straight forward but after implementing them I was wondering how useful they...

It seems `compute_ndc_to_world_matrix` and `ndc_to_world` would be helpful based on my own code and @MOZGIII's code. I also see that viewport to ndc 2d transformation would be useful. Is the...

I changed it to an option which was a really simple change.

So for playing backward. It looks like the animation will repeat even if `repeat` is `false`. But I didn't change that. I could fix it in this PR. In this...