Bradley Odell

Results 21 comments of Bradley Odell

I have tested this PR with a test model that I made and it successfully exports to .XMODEL_EXPORT format without error and it successfully loads into the CoD WaW Mod...

My test model only had a color map (image texture), no spec maps or bump maps or anything like that. And I haven't tested the vertex colors feature.

Yes, I converted the code to use `loop_triangles` in my fork (see PR #32). Although, I am worried about the `tessface_vertex_colors` also being removed from the Mesh API. I changed...

Should have been posted in the `asyncapi/asyncapi-react` repo.

These TypeScript definitions can be used if you just need to library to perform `moov` box parsing. ```ts declare module "mp4box" { interface MP4MediaTrack { id: number; created: Date; modified:...

Webpack 5 has its own types now. If you remove your local dependency on `@types/webpack`, then the existing `@types/webpack-hot-middleware` will work again.

I tracked down what the .NET Runtime does for this API: https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.process.privatememorysize64?view=net-8.0 https://github.com/dotnet/runtime/blob/main/src/libraries/System.Diagnostics.Process/src/System/Diagnostics/Process.cs#L499 https://github.com/dotnet/runtime/blob/main/src/libraries/System.Diagnostics.Process/src/System/Diagnostics/ProcessManager.Win32.cs#L366 Win32 API for accessing "Private Bytes" of process: https://learn.microsoft.com/en-us/windows/win32/api/winternl/nf-winternl-ntquerysysteminformation#system_process_information Seems to me like this header is...

I can take a stab at it this weekend, but I'm not super familiar with Rust yet (beginner-intermediate), so no guarantees on producing something workable.

Just ran into the issue with `ambassador` not working with `async_trait` :( Would a solution work where `ambassador` added macros to the `impl` block (that I assume it generates)? Something...

Just tried changing `serde_json::Map` to `std::collections::HashMap` and it compiles fine. So I think there is definitely a bug or missing functionality in `serde_json::Map` that needs to be fixed. ```rust #[derive(Serialize,...