Guillaume Thiolliere
Guillaume Thiolliere
I use winit with the PR 2188, and I modified bevy_egui to handle touch event, I got this, which seems to work, by inspiring from bevy_winit. Here is the branch:...
To deploy on the web I put all the files in the binary and then I implement the loader like this: ```rs pub struct MyTiledResourceCache(HashMap); impl tiled::ResourceCache for MyTiledResourceCache {...
same for me dynamic mixer sources are never dropped, the issue may be in UniformSourceIterator.
I've got a minimal failing example: ```rust extern crate rodio; use std::io::BufReader; use rodio::Source; fn main() { let source = ::rodio::buffer::SamplesBuffer::new(1, 44100, vec![1i16, 2, 3, 4, 5, 6]); let source...
I'm not sure but I don't think the doc force sources to always return None after the first None. depending on that the issue is on channelvolume side or uniformsourceiterator...
about ALAC a cargo crate exist: https://crates.io/crates/alac and also maybe https://crates.io/crates/caf
the audio heard sound like https://github.com/thiolliere/rodio_debug/blob/master/wrong_output.ogg (created with audacity)
I understand the interest but actually I don't see that much possible improvments in practice: * Weights: people should simply writes 0 for their toy pallet. * MaxEncodedLen: I was...
One solution can be: do a runtime migration which change the logic of the storage to: * read from old storage. * write to new storage and old storage. *...
yes a lazy migration is not hard. All access to storage are done through the type alias (as `Foo` in `type Foo = StorageValue`). So one can change this type...