Philpax

Results 195 issues of Philpax

At present, it is not possible to host a native server and connect to it from a native client on another machine unless you set up the server with a...

enhancement
topic:networking

At present, the only way for other modules to be notified of another module being loaded/unloaded is through that module announcing it itself. However, this is not always viable (original...

enhancement
topic:api

This is strictly not possible right now, as the official linkage between WebGPU and WebXR has not landed. However, it may still be possible by copying the output from WebGPU...

This is probably due to RAII freeing resources in the wrong order, but I've run out of time to fix up my debugger and track this down.

bug
good first issue

With the increasing prevalence of standalone Android headsets, it's important to have this compile and work on the major headsets (Quest 2, Pico 4, Lynx R-1, etc) to ensure that...

enhancement
help wanted

I've bodged the transform from OpenXR space to wgpu space: ```rust let xr_rotation = { let o = pose.orientation; Quat::from_rotation_x(180.0f32.to_radians()) * glam::quat(o.w, o.z, o.y, o.x) }; let xr_translation = glam::vec3(-pose.position.x,...

enhancement
good first issue

The window should be a crop of the XR view, similar to how other XR applications work.

enhancement

Hi there! I recognise that this would be quite difficult to do with the current tooling that Rust provides, but are there any plans to provide a synchronous variant of...

When one half of a connection is forcibly terminated (application shut down or crashes), the other side will spam log messages. **Client shut down without disconnecting from the server**: ```...

C-Bug
A-Netcode
A-Transport