tga
tga
```rust // --target wasm32-unknown-emscripten cc::Build::new() .flag("-s") .flag("FULL_ES3=1") .file("sokol.c") .compile("test") ; ``` a build session like this, I'm trying to emulate the command `emcc -s FULL_ES3=1 sokol.c`, but the `.flag("-s").flag("FULL_ES3=1")` part...
In the generated js file there's ```javascript return fetch( "main.wasm", {credentials: "same-origin"} ) ``` is there a way to customize the wasm path (like `"wasm/main.wasm"`)? also is there a way...
I saw `scaleMode` but I didn't see how can I scale an image with nearest neighbor (to prevent pixelated image from blurry)?
I'm using the `sonic-pi-tool` cli tool and it is using the `app/server/ruby/bin/sonic-pi-server.rb` script to start the server, which is requiring `rugged.rb`, which is requiring ```ruby ruby_api = RbConfig::CONFIG['ruby_version'] require_relative "../../../rb-native/#{ruby_api}/rugged"...
Changes the `addLevel()` api, put all level related data into 1 single structure `LevelData` - Put everything into one data struct, move level ascii drawing into `map` field - More...
- There's been complaints about F5 being bound to take screenshot which disrupts browser default refresh behavior, yes it sucks and is a big oversight.. - Maybe "debug mode" should...
### Version v2000.1 ### What browsers are you seeing the problem on? Chrome, Firefox, Safari, Microsoft Edge, Other ### What happened? Nothing plays ### What's the expected behavior? There should...
### Version v2000.1 ### What browsers are you seeing the problem on? _No response_ ### What happened? `window.origin` exists in browser and ts default definitions, which confuses ts with kaboom's...
`origin` (which we do export to global) conflicts with [`window.origin`](https://developer.mozilla.org/en-US/docs/Web/API/Location/origin), which messes up typescript type inference and checking.