Max Graey

Results 346 comments of Max Graey

Yes, it possible with AS. See web sdk example: https://github.com/AssemblyScript/examples/tree/main/sdk Also you could check how playground implemented on official page: https://github.com/AssemblyScript/website/blob/main/src/.vuepress/public/editor.html

set / get pixel is quite basic and useful operation which is pretty tricky in wasm4 due to packing. And users may easily do it in suboptimal way. See example:...

Or use glsl shader for that: https://github.com/Armada651/hqx-shader/blob/master/glsl/hq2x.glsl =)

@mdsumner Poly2Tri: Original: https://github.com/greenm01/poly2tri Js Port: https://github.com/r3mi/poly2tri.js

Just recreate all fixtures via `ASC_FEATURES="*" npm run test:compiler -- --create` command to make sure

@danaugrs We have an automatic release process (via github action) so we usually collect and merge a bunch of PRs at once. I'll begin the merging process soon

The main problem with `StaticArray.slice` that it's non-standard nature and different signature compare to `Array/SliceArray#slice` (What makes refactoring difficult) and force people to spend a lot of time in docs....

I think we can move towards this iteratively. These changes don't break anything. And then we can remove all static methods that duplicate instance methods but only with a different...