Brandon Grimshaw
Brandon Grimshaw
Hi, I seem to have run up against a wall with how the allocator destroys memory blocks. I have a `GfxCtx` struct that holds basically all of my Vulkan state....
If a user has no credential manager installed (they don't want their passwords saved, it's a shared workstation, whatever reason), connecting to source control from within the editor fails. There...
Hi, I've run into an issue when trying to pause the game (by setting the global time scale to 0) will not pause the physics simulation as well (as desired)...
Calling World.step with a `timeSinceLastCalled` of 0 would cause it to revert to the fixed time step behaviour. This was due to the default value of `timeSinceLastCalled` being 0. This...
Variables
Feature Request: Variables, whether sourced from the editor, or other packages. One particular use-case are documentation generators; Javadoc snippets would certainly benefit from variables like user name, date, project version,...
Hey there, First time using fuzzy-matcher and I noticed that `ScoreType` isn't `pub`. This is a bit of a pain if you want to store the scores anywhere, as it...
Hi there, I noticed that pasting from the system clipboard was not working, despite my `.vimrc` having the appropriate line. After a bit of testing I realised that `set clipboard=unnamed`...
The pre-deploy check for mismatching `FUNCTIONS_WORKER_RUNTIME` values between the remote and local config is case sensitive, blocking deploy even if the worker runtimes only differ by case. Eg. `The remote...
I'm restructuring my project and have noticed that model keys are defined with `pub(crate)` visibility. I can see the motivation for this choice and generally agree with it. However it...
`ByteBuffer::destroy_into_vec_struct` multiplies the length & capacity of the byte buffer by the size of the struct, however it should divide by the size to go from number of bytes to...